blob: ab57e1dbde2e3a51124855d905a4517529ea0895 [file] [log] [blame]
class A {
A(bool this.v1, {required num this.v2});
bool v1;
num v2;
}
class C = A with M1;
mixin class M1 {
num v2 = -1;
}
test() {}