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

19 lines
194 B
D

// REQUIRED_ARGS: -o-
// PERMUTE_ARGS:
struct X
{
void mfoo(this T)() {}
}
void test()
{
shared const X scx;
scx.mfoo();
}
struct Vec
{
int x;
void sc() shared const {}
}