blob: 079b3cc42799d23bd886890d83368f7746f183d7 [file] [log] [blame]
class Foo {
static const staticConstant = 42;
static get staticGetter => null;
static set staticSetter(_) {}
static staticFunction() {}
static var staticField = 42;
}
main() {}
use(x) {}