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