mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
9 lines
276 B
Rust
9 lines
276 B
Rust
fn read_lines_borrowed1() -> Vec<
|
|
&str //~ ERROR missing lifetime specifier
|
|
> {
|
|
let rawLines: Vec<String> = vec!["foo ".to_string(), " bar".to_string()];
|
|
rawLines.iter().map(|l| l.trim()).collect()
|
|
//~^ ERROR: cannot return value referencing
|
|
}
|
|
|
|
fn main() {}
|