blob: a39ae4f1cf33be2105ce1e1b1828857e999c68aa [file] [log] [blame]
fn read_lines_borrowed<'a>() -> Vec<&'a str> {
let rawLines: Vec<String> = vec!["foo ".to_string(), " bar".to_string()];
rawLines //~ ERROR `rawLines` does not live long enough
.iter().map(|l| l.trim()).collect()
}
fn main() {}