comparison test/complex3.d @ 107:3efbcc81ba45 trunk

[svn r111] Fixed most problems with complex number support and added typeinfo for them. Added typeinfo ti_C. Did some changes to the way expressions that have both lvalue and rvalue LLVM values are handled.
author lindquist
date Tue, 20 Nov 2007 00:02:35 +0100
parents 4d1e9eb001e0
children
comparison
equal deleted inserted replaced
106:5b5194b25f33 107:3efbcc81ba45
2 2
3 void main() 3 void main()
4 { 4 {
5 cfloat c1 = 1f + 0i; 5 cfloat c1 = 1f + 0i;
6 cfloat c2 = 0f + 0i; 6 cfloat c2 = 0f + 0i;
7 //c2 += 1f + 0i; 7 c2 += 1f + 0i;
8 //assert(c1 == c2); 8 //assert(c1 == c2);
9 } 9 }