blob: f9ea52b1292149d4db334b370064217a26ed56a7 [file] [log] [blame]
// @dart = 2.6
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;
}