``` rust trait Foo { fn m(&self, _:int) { } } fn main() { } ``` ``` % rustc /tmp/foo.rs /tmp/foo.rs:2:16: 2:17 error: expected type, found token UNDERSCORE /tmp/foo.rs:2 fn m(&self, _:int) { } ^ ```