blob: fc6c55e11cd3cd1bbcd1238d0c45d6faf37f2a5a [file] [log] [blame]
class A {
bool v1;
num v2;
A(bool this.v1, num this.v2);
}
mixin M1 {
num v2 = 0;
}
class C = A with M1;
main() {}