annotate run/template_01.d @ 1576:b3e16c86558e

[Issue 1398] New: GDC doesn't generate correct code <mariusmuja@gmail.com> 2007-08-04 http://d.puremagic.com/issues/show_bug.cgi?id=1398
author thomask
date Thu, 21 Feb 2008 15:20:08 +0000
parents b8c0195059d9
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
140
a33ad7189d21 1) news:// -> news:
thomask
parents: 1
diff changeset
1 // $HeadURL$
a33ad7189d21 1) news:// -> news:
thomask
parents: 1
diff changeset
2 // $Date$
a33ad7189d21 1) news:// -> news:
thomask
parents: 1
diff changeset
3 // $Author$
0
3269e4627918 init dstress
svnowner
parents:
diff changeset
4
3269e4627918 init dstress
svnowner
parents:
diff changeset
5 // @author@ Daniel Horn <hellcatv@hotmail.com>
3269e4627918 init dstress
svnowner
parents:
diff changeset
6 // @date@ 2004-05-01
1489
b8c0195059d9 changed nntp: URLs to http: URLs
thomask
parents: 374
diff changeset
7 // @uri@ http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=50
0
3269e4627918 init dstress
svnowner
parents:
diff changeset
8
374
f87ba6507260 added missing meta-data
thomask
parents: 140
diff changeset
9 module dstress.run.template_01;
f87ba6507260 added missing meta-data
thomask
parents: 140
diff changeset
10
0
3269e4627918 init dstress
svnowner
parents:
diff changeset
11 template T(int size){
3269e4627918 init dstress
svnowner
parents:
diff changeset
12 int vec[size];
3269e4627918 init dstress
svnowner
parents:
diff changeset
13 }
3269e4627918 init dstress
svnowner
parents:
diff changeset
14
3269e4627918 init dstress
svnowner
parents:
diff changeset
15 int main(){
3269e4627918 init dstress
svnowner
parents:
diff changeset
16 int a = T!(4>1?4:1).vec[0];
3269e4627918 init dstress
svnowner
parents:
diff changeset
17 int b = T!(4==1?1:(1==1?4:(4>1?1:4))).vec[0];
3269e4627918 init dstress
svnowner
parents:
diff changeset
18 return 0;
3269e4627918 init dstress
svnowner
parents:
diff changeset
19 }