blob: 77d27d7c06b6c3fc511240ca3e11fd8edbba62e3 (
plain)
1
2
3
4
5
6
7
8
9
|
trait Trait {}
impl Trait for () {}
fn foo<'a: 'a>() {
let _x: impl Trait = ();
//~^ `impl Trait` only allowed in function and inherent method argument and return types
}
fn main() {}
|