rust/src/test/compile-fail/iface-impl-different-num-params.rs
2012-02-13 07:33:16 -08:00

13 lines
192 B
Rust

iface foo {
fn bar(x: uint) -> self;
}
impl of foo for int {
fn bar() -> int {
//!^ ERROR method `bar` has 0 parameters but the iface has 1
self
}
}
fn main() {
}