rust/src/test/compile-fail/multitrait.rs

8 lines
145 B
Rust
Raw Normal View History

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