mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-20 03:27:30 +00:00
7 lines
178 B
Rust
7 lines
178 B
Rust
![]() |
#![feature(default_field_values)]
|
||
|
struct A<'a> { //~ ERROR lifetime parameter `'a` is never used
|
||
|
x: Vec<A> = Vec::new(), //~ ERROR missing lifetime specifier
|
||
|
}
|
||
|
|
||
|
fn main() {}
|