blob: 012849c37333ff4b45e70ec48e7a275aabc77aac [file] [log] [blame]
// @dart = 2.9
library test;
class C {
bool b;
C(Object o) : b = o;
}
main() {}