blob: fb21efedd6ce2f41504eae0e19244b644886260f [file] [log] [blame]
// @dart = 2.9
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() {}