mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 19:03:13 +01:00
17 lines
172 B
D
17 lines
172 B
D
module structinit2;
|
|
|
|
struct Imp
|
|
{
|
|
int i;
|
|
long l;
|
|
float f;
|
|
}
|
|
|
|
void main()
|
|
{
|
|
Imp i;
|
|
assert(i.i == 0);
|
|
assert(i.l == 0L);
|
|
assert(i.f !<>= 0.0f);
|
|
}
|