mixin M1 {
	function f() : void {
	}
}
mixin M2 {
	function f() : void {
	}
}
class T implements M1, M2 {
}
