blob: 9419fb3e2b26e1ba6cd1117c3c4ef866b848c431 [file] [log] [blame]
import 'nsm_covariance_lib.dart';
abstract class D1 implements A<int>, B {}
abstract class D2 implements B, A<int> {}
class D3 implements A<int>, B {
@override
noSuchMethod(Invocation invocation) => null;
}
class D4 implements B, A<int> {
@override
noSuchMethod(Invocation invocation) => null;
}
main() {}