blob: 77d27d7c06b6c3fc511240ca3e11fd8edbba62e3 [file] [log] [blame]
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() {}