blob: eb79a0a9d0b5dbd327654e871254dcfadc43868d [file] [log] [blame]
abstract class Interface {
String method(num i);
}
abstract class Interface2 {
String method(covariant int i);
}
mixin A implements Interface {
String method(num i, {String s = "hello"}) => s;
}
abstract class B implements Interface {
String method(num i);
}
mixin D implements Interface, Interface2 {}
class E with A, D {}
mixin F implements Interface {}
class G with A, F {}
main() {}