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