mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
15 lines
209 B
D
15 lines
209 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/ice9273b.d(14): Error: constructor `ice9273b.B.this` no match for implicit `super()` call in constructor
|
|
---
|
|
*/
|
|
|
|
class A
|
|
{
|
|
this(T)() {}
|
|
}
|
|
class B : A
|
|
{
|
|
this() {}
|
|
}
|