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