dfmt/tests/issue0432.d

20 lines
274 B
D

struct S
{
ulong x;
ulong y;
ulong z;
ulong w;
}
immutable int function(int) f = (x) { return x + 1111; };
immutable S s = {
1111111111111111111,
1111111111111111111,
1111111111111111111,
1111111111111111111,};
void main()
{
}