blob: 540fbce2e9902fae49416231bb1636a5ab44f57e [file]
class C0 {
int b;
final int c;
int d;
int e;
int f;
int g = 42;
C0(int a, this.b, this.c)
: d = a,
e = b,
f = c;
}
class C1(int a, var int b, final int c) {
int d = a;
int e = b;
int f = c;
int g = 42;
}