4 lines
107 B
Rust
4 lines
107 B
Rust
|
fn main() {
|
||
|
[0].iter().flat_map(|a| [0].iter().map(|_| &a)); //~ ERROR `a` does not live long enough
|
||
|
}
|