view tests/mini/complex3.d @ 995:125c09006ac6

Fix some -vv output
author Frits van Bommel <fvbommel wxs.nl>
date Thu, 26 Feb 2009 14:51:05 +0100
parents fbb1a366cfbc
children
line wrap: on
line source

module complex3;

void main()
{
    cfloat c1 = 1f + 0i;
    cfloat c2 = 0f + 0i;
    c2 += 1f + 0i;
    assert(c1 == c2);
}