blob: 031ace0f16ecf082d724036d0f82138e60301439 [file] [log] [blame]
mixin B {
static int staticField = 0;
void foo() {
// empty
}
// Mixins cannot have constructors (or members with same name as mixin).
factory B() {
// empty
}
B.foo() {
// empty
}
}