view run/c/class_23_D.d @ 997:b87623b56a7f

<benoit@tionex.de> 2006-05-10 news:bug-133-3@http.d.puremagic.com/bugzilla/
author thomask
date Mon, 15 May 2006 04:22:53 +0000
parents
children 81222734adf3
line wrap: on
line source

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

// @author@	<benoit@tionex.de>
// @date@	2006-05-10
// @uri@	news:bug-133-3@http.d.puremagic.com/bugzilla/

module dstress.run.c.class_23_D;

class FooT(V){
}

class Foo : Bar {
}

class Bar : FooT!(int) {
}

int main(){
	Foo f = new Foo();

	if(!f){
		assert(0);
	}

	return 0;
}