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

3 lines
130 B
D

struct S { @disable this(); }
// Does not compile: "default construction is disabled for type `S`"
extern __gshared S gVariable1;