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