blob: 45fe92bf91a4ec251c466a042b4017bf04ff1a68 [file] [log] [blame]
void expectTypeError(callback()) {}
abstract class A<X> {
List<X> foo;
}
class B implements A<int> {
dynamic noSuchMethod(i) => <dynamic>[];
}
main() {}