1 2 3 4 5 6 7 8
struct S { y: int } impl S: Cmp, ToStr { //~ ERROR: expected `{` but found `,` fn eq(&&other: S) { false } fn to_str() -> ~str { ~"hi" } }