comparison test/imag1.d @ 62:b86e00b938a5 trunk

[svn r66] Added support for imaginary floating point types
author lindquist
date Thu, 25 Oct 2007 09:48:36 +0200
parents
children
comparison
equal deleted inserted replaced
61:0258a7171a42 62:b86e00b938a5
1 module imag1;
2
3 void main()
4 {
5 ifloat f = 1.0i;
6 auto x = 2.0i*f;
7 }