mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
10 lines
125 B
D
10 lines
125 B
D
module complex3;
|
|
|
|
void main()
|
|
{
|
|
cfloat c1 = 1f + 0i;
|
|
cfloat c2 = 0f + 0i;
|
|
c2 += 1f + 0i;
|
|
assert(c1 == c2);
|
|
}
|