1
Fork 0
rust/src/test/compile-fail/iface-test.rs

6 lines
92 B
Rust
Raw Normal View History

iface foo { fn foo(); }
impl of int for uint { fn foo() {} } //~ ERROR trait
fn main() {}