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