blob: eaafc075680d55ae1cbb06e0c25dd981ad8b81d0 [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() {}