blob: b009d58b30c59717650401f9b31791470092638e [file] [log] [blame]
class Class extends Super {
Class(bool value)
: assert(property),
this.field = property,
super(property);
Class.redirect() : this(property);
bool field;
}
class Super {
Super(bool value);
bool get property => true;
}
main() {}