d: Merge upstream dmd, druntime 26f049fb26, phobos 330d6a4fd.
[official-gcc.git] / gcc / testsuite / gdc.test / compilable / ice13088.d
blob326796fededf59bc48e1ecc69713f8b0ba101af2
1 // REQUIRED_ARGS: -o-
2 // PERMUTE_ARGS:
4 struct X
6 void mfoo(this T)() {}
8 void test()
10 shared const X scx;
12 scx.mfoo();
15 struct Vec
17 int x;
18 void sc() shared const {}