d: Merge upstream dmd, druntime 4c18eed967, phobos d945686a4.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / ice9273b.d
blob2d057246cbd88e9f585782ff02fbd6ce1b59e085
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/ice9273b.d(14): Error: constructor `ice9273b.B.this` no match for implicit `super()` call in constructor
5 ---
6 */
8 class A
10 this(T)() {}
12 class B : A
14 this() {}