mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-19 11:07:32 +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() {}
|