mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
10 lines
313 B
Rust
10 lines
313 B
Rust
fn read_lines_borrowed<'a>() -> Vec<&'a str> {
|
|
let raw_lines: Vec<String> = vec!["foo ".to_string(), " bar".to_string()];
|
|
raw_lines.iter().map(|l| l.trim()).collect()
|
|
//~^ ERROR cannot return value referencing local variable `raw_lines`
|
|
}
|
|
|
|
fn main() {
|
|
println!("{:?}", read_lines_borrowed());
|
|
}
|