mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
16 lines
324 B
Rust
16 lines
324 B
Rust
// run-rustfix
|
|
#![allow(unused)]
|
|
|
|
trait Foo<T>: Sized {
|
|
fn bar(i: i32, t: T, s: &Self) -> (T, i32);
|
|
}
|
|
|
|
impl Foo<usize> 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() {}
|