blob: ee95ac91fd22b6b4f59e5590d8add2b0b294225d [file] [log] [blame]
import 'inherited_representation_field_lib.dart';
extension type A(int a) {}
extension type B(int b) implements A {
methodA() => a;
methodB() => b;
}
extension type C(int _c) {}
extension type E(int _e) implements D {
methodC() => _c;
}
extension type G<T>(T g) {}
extension type H<T>(List<T> h) implements G<List<T>> {}
main() {}
expect(expected, actual) {}