comparison run/b/bug_recog_2083_E.d @ 1490:8732ccec11b2

Bug in GDC? Geert Mulders <g.c.w.m.mulders@phys.uu.nl> 2007-04-16 news:f001t0$47n$1@digitalmars.com
author thomask
date Tue, 17 Apr 2007 16:35:02 +0000
parents
children
comparison
equal deleted inserted replaced
1489:b8c0195059d9 1490:8732ccec11b2
1 // $HeadURL$
2 // $Date$
3 // $Author$
4
5 // @author@ Geert Mulders <g.c.w.m.mulders@phys.uu.nl>
6 // @date@ 2007-04-16
7 // @uri@ news:f001t0$47n$1@digitalmars.com
8 // @desc@ Bug in GDC?
9
10 module dstress.run.b.bug_recog_2083_E;
11
12 int main(char[][] args){
13 idouble a = args.length * 1i;
14 double b = !a;
15
16 if(0.0 == b){
17 return 0;
18 }
19 }
20