rust/src/test/compile-fail/multitrait.rs
2012-09-07 17:54:47 -07:00

8 lines
144 B
Rust

struct S {
y: int
}
impl S: Cmp, ToStr { //~ ERROR: expected `{` but found `,`
fn eq(&&other: S) { false }
fn to_str() -> ~str { ~"hi" }
}