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