mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
12 lines
167 B
Rust
12 lines
167 B
Rust
#![allow(warnings)]
|
|
|
|
trait MyTrait { }
|
|
|
|
struct Foo<'a> { x: &'a u32 }
|
|
|
|
impl MyTrait for Foo {
|
|
//~^ ERROR implicit elided lifetime not allowed here
|
|
}
|
|
|
|
fn main() {}
|