blob: 3b8f20e41768e50e6ae2da700c0b939b8ba3472b [file] [log] [blame]
library test;
Object o = 1;
bool topLevelValue = o;
class C {
bool instanceValue = o;
static bool staticValue = o;
}
main() {}