13 lines
186 B
Rust
13 lines
186 B
Rust
trait foo {
|
|
fn bar(x: uint) -> self;
|
|
}
|
|
impl int: foo {
|
|
fn bar() -> int {
|
|
//~^ ERROR method `bar` has 0 parameters but the trait has 1
|
|
self
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
}
|