view run/template_class_05.d @ 70:5f98d4a33d49

1) review of all test cases with unexpected results (except encoding and html/xml) 2) updated todo
author thomask
date Sat, 23 Oct 2004 22:47:47 +0000
parents 3414705c41ac
children a33ad7189d21
line wrap: on
line source

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

module dstress.run.template_class_05;

class Parent(Type){
}

class Child : Parent!(){
}

class Parent(){
}

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