blob: 326796fededf59bc48e1ecc69713f8b0ba101af2 [file] [log] [blame]
// 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 {}
}