#![feature(default_field_values)] struct A<'a> { x: Vec = Vec::new(), //~ ERROR missing lifetime specifier } fn main() {}