d: Merge upstream dmd, druntime 4c18eed967, phobos d945686a4.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail8217.d
blob477ca63a9e8eccc4ee3c593f224b887d08060063
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail8217.d(22): Error: `this` for `foo` needs to be type `D` not type `fail8217.D.C`
5 ---
6 */
8 class D
10 int x;
11 template bar()
13 int foo()
15 return x;
18 static class C
20 int foo()
22 return bar!().foo();