view tests/mini/complex3.d @ 1469:7b6f066ba869

Remove `premake.lua` and update the readme.
author Frits van Bommel <fvbommel wxs.nl>
date Wed, 03 Jun 2009 15:09:30 +0200
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);
}