view run/throw_02.d @ 1383:52c9e86b6486

@url@ -> @uri@
author thomask
date Sun, 04 Mar 2007 13:07:35 +0000
parents f87ba6507260
children 6e4063f99377
line wrap: on
line source

// $HeadURL$
// $Date$
// $Author$

// @author@	Sean Kelly <sean@f4.ca>
// @date@	2004-11-10
// @uri@	news:cmsg75$rom$1@digitaldaemon.com
// @uri@	nntp://digitalmars.com/digitalmars.D.bugs/2240

module dstress.run.throw_02;

class Class{
}

typedef Class Alias;

int main(){
	try{
		throw new Alias();
	}catch{
		return 0;
	}
	assert(0);
}