blob: 40a52efc7f9fc0860dc774477c5a9c13832f8266 [file] [log] [blame]
#![allow(warnings)]
trait MyTrait { }
struct Foo<'a> { x: &'a u32 }
impl MyTrait for Foo {
//~^ ERROR implicit elided lifetime not allowed here
}
fn main() {}