blob: 188efcec852805a3827bec73770dc30ebdbcb3c2 [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() {}