blob: abcc4906b82a615fc7119cf6db77ad79c4cb4bed [file] [log] [blame]
// @dart = 2.9
class E {
final int x;
final int y;
E() : this.named(), this.x = 1;
this.
y = 2;
E.named() : this.x = 5, this.y = 6;
}
main() {}