[svn r66] Added support for imaginary floating point types

This commit is contained in:
Tomas Lindquist Olsen
2007-10-25 09:48:36 +02:00
parent 8e49b3c389
commit 1f13dbd766
11 changed files with 63 additions and 7 deletions

7
test/imag1.d Normal file
View File

@@ -0,0 +1,7 @@
module imag1;
void main()
{
ifloat f = 1.0i;
auto x = 2.0i*f;
}