blob: 67cecca38803f74f63b1f213cf8fc37305c28be2 [file] [log] [blame]
class A {
const A() : this.bad();
A.bad() {}
}
class B extends A {
const B() : super.bad();
}
test() {}
main() {}