comparison nocompile/o/opMulAssign_21_B.d @ 1271:d1a257667ede

fixed opAssign_21 -> opMulAssign_21
author thomask
date Sat, 23 Dec 2006 14:13:51 +0000
parents
children daef239f37cf
comparison
equal deleted inserted replaced
1270:660f9196b52a 1271:d1a257667ede
1 // $HeadURL$
2 // $Date$
3 // $Author$
4
5 // @author@ Thomas Kühne <thomas-dloop@kuehne.cn>
6 // @date@ 2006-12-23
7 // @uri@ news:bug-730-3@http.d.puremagic.com/issues/
8 // @desc@ [Issue 730] New: broken operator handling of ifloat/idouble/ireal
9
10 // __DSTRESS_ELINE__ 16
11
12 module dstress.nocompile.o.opMulAssign_21_B;
13
14 void foo(){
15 idouble a = 1.0i;
16 a *= 2.0i;
17 }
18