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