mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
10 lines
194 B
D
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
|
|
}
|