blob: 8fe63433eb6e6d9af64c2fbaa638b70960aa0c83 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/diag14163.d(16): Error: constructor diag14163.Bar.this cannot call super() implicitly because it is annotated with @disable
---
*/
class Foo
{
@disable this();
}
class Bar : Foo
{
@disable this();
this(int i) {}
}
void main() {}