blob: 03ebb40ef19e5de8f49f04c8d5c9b05dcda8d062 [file] [log] [blame]
// @dart = 2.9
class Class {}
extension Extension on Class {
get instanceProperty => 42;
instanceMethod() {}
set instanceProperty(value) {}
static genericMethod<T>(T t) {}
static get property => 42;
static method() {}
static set property(value) {}
static var field;
}
main() {}