blob: c523e8c35fe86e0684fa87ce3580fd9425cbde7b [file]
class C0 {
int x;
int y = 0;
int z = 2;
C0(this.x, this.z) : y = 1;
}
class C1(var int x, this.z) {
int y = 0;
int z = 2;
this : y = 1;
}