Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
ice9273b.d
blob: 2d057246cbd88e9f585782ff02fbd6ce1b59e085 [
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
()
{}
}