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