view run/template_class_03.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@	Roel Mathys <roel.mathys@yucom.be>
// @date@	2004-05-21
// @uri@	news://c8ljro$q9h$1@digitaldaemon.com
// @url@	nttp://digitalmars.com/digitalmars.D.bugs:250

module dstress.run.template_class_03;

class MyClass(T1){
	alias T1 type1;
}

class MyClass(T1, T2){
	alias T1 type1;
	alias MyClass!(T2) type2;
}

int main(){
	alias MyClass!(int,long) CT;
	CT c = new CT();
	return 0;
}