view run/template_class_04.d @ 1383:52c9e86b6486

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

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

// @author@	Bastiaan Veelo <Bastiaan.N.Veelo@ntnu.no>
// @date@	2004-09-23
// @uri@	news:ciutbq$1lue$1@digitalmars.com
// @uri@	nntp://digitalmars.com/digitalmars.D.bugs/1932

module dstress.run.template_class_04;

class Parent(){
}

class Child : Parent!(){
}

class Parent(Type){
}

int main(){
	Child c = new Child();
	return 0;
}