blob: 2897b36fe2129afac36a28fbf950e7483d30a388 [file] [log] [blame]
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() {}