blob: 7617a873278b3d169f1e8dddd1a7e788810ccab5 [file] [log] [blame]
main() {}
class W {
String native;
W() : native = "field";
}
class X {
String native() => "method";
}
abstract class Y1 {
String get native;
}
class Y2 extends Y1 {
@override
String get native => "getter";
}
class Z {
set native(String s) => f = s;
String? f;
}