blob: de48df1b0ffa4dc05edf0cc6613cc73799d0c133 [file] [log] [blame]
// @dart = 2.9
class Class1 {}
extension Extension1 on Class1 {
static staticMethod() {}
static get staticProperty {}
static set staticProperty(int value) {}
static var staticField = 42;
}
main() {}