dmd/compiler/test/compilable/test8041.d
2022-07-09 18:53:07 +02:00

10 lines
194 B
D

// PERMUTE_ARGS:
struct Foo { }
void main()
{
static Foo sf; // ok
__gshared Foo gf; // was: Error: non-constant expression gf = 0
__gshared int[1][1] arr; // dup: Issue 6089
}