blob: 9376c1185faefd84f92c3a622907edc2d02f42e0 [file] [log] [blame]
struct S {
y: int
}
impl S: Cmp, ToStr { //~ ERROR: expected `{` but found `,`
fn eq(&&other: S) { false }
fn to_str() -> ~str { ~"hi" }
}