[svn r108] Now basic suppport for complex types. =,+,-,*,/ are supported.

This commit is contained in:
Tomas Lindquist Olsen
2007-11-19 02:58:58 +01:00
parent 6da09c01b3
commit 5e9f5034ff
11 changed files with 592 additions and 392 deletions

9
test/complex3.d Normal file
View File

@@ -0,0 +1,9 @@
module complex3;
void main()
{
cfloat c1 = 1f + 0i;
cfloat c2 = 0f + 0i;
//c2 += 1f + 0i;
//assert(c1 == c2);
}