comparison run/typedef_04.d @ 0:3269e4627918

init dstress
author svnowner
date Sat, 25 Sep 2004 22:33:30 +0000
parents
children 3414705c41ac
comparison
equal deleted inserted replaced
-1:000000000000 0:3269e4627918
1 // $Header: /home/th/Dokumente/Entwicklung/MEIN_CVS/MiniD/src/run/typedef_04.d,v 1.1 2004/08/21 22:51:39 th Exp $
2
3 // @author@ berupon <yu@3dcg.ne.jp>
4 // @date@ 2004-06-10
5 // @uri@ news://20040611054017.9D25.YU@3dcg.ne.jp
6
7 typedef int Int;
8
9 class Test( T = Int){
10 }
11
12 alias Test!() Test2;
13
14 int main(){
15 Test2 t;
16 return 0;
17 }