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