blob: a7faa461a668355eb2a24757c154581a6a95547c [file] [log] [blame]
// @dart = 2.9
library test;
Object o = 1;
bool topLevelValue = o;
class C {
static bool staticValue = o;
bool instanceValue = o;
}
main() {}