blob: 555dc77f61316570bb54641f87145406b3d599b8 [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) {}