blob: f0f123f85a03f1ad5f1c67172b429c11a9d9c251 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// should-fail
#![allow(unused)]
trait Foo<T>: Sized {
fn bar(i: i32, t: T, s: &Self) -> (T, i32);
}
impl Foo<usize> for () {
fn bar(i: _, t: _, s: _) -> _ {
//~^ ERROR the placeholder `_` is not allowed within types on item signatures for functions
(1, 2)
}
}
fn main() {}
|