blob: d02d115b038293df911c4755a832c7b2858befc9 [file] [log] [blame]
class Named = S with M, N, M;
class S {}
main() {}
mixin M {
var m;
}
mixin N on M {
get superM => super.m;
void set superM(value) {}
}