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