rust/src/test/ui/lifetimes/unnamed-closure-doesnt-life-long-enough-issue-67634.rs

4 lines
107 B
Rust
Raw Normal View History

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