blob: 4c1ba8723ed0a1e4791741bd7926fbf773bb30c0 [file] [log] [blame]
class Super {
void extendedConcreteMethod() {}
void extendedAbstractMethod();
void extendedConcreteMixedInConcreteMethod() {}
void extendedAbstractMixedInConcreteMethod();
void extendedConcreteMixedInAbstractMethod() {}
void extendedAbstractMixedInAbstractMethod();
}
mixin class Mixin {
void mixedInConcreteMethod(int i) {}
void mixedInAbstractMethod(int i);
void extendedConcreteMixedInConcreteMethod(int i) {}
void extendedAbstractMixedInConcreteMethod(int i) {}
void extendedConcreteMixedInAbstractMethod(int i);
void extendedAbstractMixedInAbstractMethod(int i);
}
class ClassMixin extends Super with Mixin {}
class NamedMixin = Super with Mixin;
main() {}