blob: 2bc7ba947e7ee5fb00c8b7168c7d05e406512703 [file] [log] [blame]
library test;
abstract class I<E> {
String m(a, String f(v, E e));
}
abstract class A<E> implements I<E> {
const A();
String m(a, String f(v, E e));
}
abstract class M {
final int y = 0;
}
class B<E> extends A<E> implements M {
const B();
int get y => 0;
m(a, f(v, E e)) {}
}
foo() {}
main() {}