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