]> git.lizzy.rs Git - rust.git/blob - tests/ui/lifetimes/unnamed-closure-doesnt-life-long-enough-issue-67634.rs
add tests for 107090
[rust.git] / tests / ui / lifetimes / unnamed-closure-doesnt-life-long-enough-issue-67634.rs
1 fn main() {
2     [0].iter().flat_map(|a| [0].iter().map(|_| &a)); //~ ERROR closure may outlive
3 }