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 */
7 
8 class A
9 {
this(T)10     this(T)() {}
11 }
12 class B : A
13 {
this()14     this() {}
15 }
16