blob: 789eed9966f869f8a0c90e47f6ca8e3445c0a2fe [file] [log] [blame]
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() {}