Sign in
gnu
/
gcc
/
fba228e259dd5112851527f2dbb62c5601100985
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
ice9273b.d
blob: 1a779facbbfd19bdb8a7bd76d37f9e7316fe41fa [
file
] [
log
] [
blame
]
/*
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
()
{}
}