blob: a17ddf5a3e69b0c5b73fb4bd3fc7c77a47210234 [file] [log] [blame]
class Super {
Super._();
}
class Sub extends Super {
Sub() : super();
Sub.foo() : super.foo();
}
class Bad {
Bad.foo() : this();
Bad.bar() : this.baz();
}
mixin M {}
class MixinApplication extends Super with M {
MixinApplication() : super();
MixinApplication.foo() : super.foo();
}
main() {}