mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-29 16:46:09 +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() {}
|