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