comparison run/template_01.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/template_01.d,v 1.1 2004/08/20 23:42:54 th Exp $
2
3 // @author@ Daniel Horn <hellcatv@hotmail.com>
4 // @date@ 2004-05-01
5 // @uri@ news://c6uoje$14a1$1@digitaldaemon.com
6
7 template T(int size){
8 int vec[size];
9 }
10
11 int main(){
12 int a = T!(4>1?4:1).vec[0];
13 int b = T!(4==1?1:(1==1?4:(4>1?1:4))).vec[0];
14 return 0;
15 }