// run-rustfix #![allow(unused)] trait Foo: Sized { fn bar(i: i32, t: T, s: &Self) -> (T, i32); } impl Foo for () { fn bar(i: i32, t: usize, s: &()) -> (usize, i32) { //~^ ERROR the placeholder `_` is not allowed within types on item signatures for functions (1, 2) } } fn main() {}