view test/complex2.d @ 175:c44e6a711885 trunk

[svn r191] Fixed: array literals did not support all type/storage combinations. Fixed: with expression had broke somewhere along the way.
author lindquist
date Wed, 07 May 2008 00:01:13 +0200
parents 4d1e9eb001e0
children
line wrap: on
line source

module complex2;

void main()
{
    cdouble c = 3.0 + 0i;
    cdouble d = 2.0 + 0i;
    {
        cdouble c1 = c + 3.0;
        cdouble c2 = c - 3.0i;
    }
    {
        cdouble c1 = c / 2.0;
    }
}