view run/typedef_04.d @ 374:f87ba6507260

added missing meta-data
author thomask
date Thu, 31 Mar 2005 09:01:33 +0000
parents a33ad7189d21
children b8c0195059d9
line wrap: on
line source

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

// @author@ 	berupon <yu@3dcg.ne.jp>
// @date@	2004-06-10
// @uri@	news:20040611054017.9D25.YU@3dcg.ne.jp

module dstress.run.typedef_04;

typedef int Int;

class Test( T = Int){
}

alias Test!() Test2;

int main(){
	Test2 t;
	return 0;
}