annotate run/c/creal_36_B.d @ 1272:ecd6e898948d

fixed missing open paren (issue #624, http://d.puremagic.com/issues/show_bug.cgi?id=624)
author thomask
date Sat, 23 Dec 2006 14:25:02 +0000
parents 23b89cbbe105
children e6887749b811
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1237
23b89cbbe105 [Issue 575] New: wrong evaluation of (creal * 2 + 1i)
thomask
parents:
diff changeset
1 // $HeadURL$
23b89cbbe105 [Issue 575] New: wrong evaluation of (creal * 2 + 1i)
thomask
parents:
diff changeset
2 // $Date$
23b89cbbe105 [Issue 575] New: wrong evaluation of (creal * 2 + 1i)
thomask
parents:
diff changeset
3 // $Author$
23b89cbbe105 [Issue 575] New: wrong evaluation of (creal * 2 + 1i)
thomask
parents:
diff changeset
4
23b89cbbe105 [Issue 575] New: wrong evaluation of (creal * 2 + 1i)
thomask
parents:
diff changeset
5 // @author@ Thomas Kühne <thomas-doop@kuehne.cn>
23b89cbbe105 [Issue 575] New: wrong evaluation of (creal * 2 + 1i)
thomask
parents:
diff changeset
6 // @date@ 2006-11-19
23b89cbbe105 [Issue 575] New: wrong evaluation of (creal * 2 + 1i)
thomask
parents:
diff changeset
7 // @uri@ news:bug-575-31@http.d.puremagic.com/issues/
23b89cbbe105 [Issue 575] New: wrong evaluation of (creal * 2 + 1i)
thomask
parents:
diff changeset
8 // @desc@ [Issue 575] New: wrong evaluation of (creal * 2 + 1i)
23b89cbbe105 [Issue 575] New: wrong evaluation of (creal * 2 + 1i)
thomask
parents:
diff changeset
9
23b89cbbe105 [Issue 575] New: wrong evaluation of (creal * 2 + 1i)
thomask
parents:
diff changeset
10 module dstress.run.c.creal_36_B;
23b89cbbe105 [Issue 575] New: wrong evaluation of (creal * 2 + 1i)
thomask
parents:
diff changeset
11
23b89cbbe105 [Issue 575] New: wrong evaluation of (creal * 2 + 1i)
thomask
parents:
diff changeset
12 int main(){
1272
ecd6e898948d fixed missing open paren (issue #624, http://d.puremagic.com/issues/show_bug.cgi?id=624)
thomask
parents: 1237
diff changeset
13 if((1.0L + 2.0Li) * 2.0L + 1.0Li != 2.0L + 5.0Li){
1237
23b89cbbe105 [Issue 575] New: wrong evaluation of (creal * 2 + 1i)
thomask
parents:
diff changeset
14 assert(0);
23b89cbbe105 [Issue 575] New: wrong evaluation of (creal * 2 + 1i)
thomask
parents:
diff changeset
15 }
23b89cbbe105 [Issue 575] New: wrong evaluation of (creal * 2 + 1i)
thomask
parents:
diff changeset
16 return 0;
23b89cbbe105 [Issue 575] New: wrong evaluation of (creal * 2 + 1i)
thomask
parents:
diff changeset
17 }
23b89cbbe105 [Issue 575] New: wrong evaluation of (creal * 2 + 1i)
thomask
parents:
diff changeset
18