granite-rust/src/test/ui/issues/issue-40510-1.nll.stderr

16 lines
477 B
Text
Raw Normal View History

2018-07-15 14:11:54 -07:00
error: unsatisfied lifetime constraints
--> $DIR/issue-40510-1.rs:18:9
|
LL | || {
| --
| ||
| |return type of closure is &'2 mut std::boxed::Box<()>
| lifetime `'1` represents this closure's body
LL | &mut x
2018-08-07 21:48:50 +01:00
| ^^^^^^ returning this value requires that `'1` must outlive `'2`
|
= note: closure implements `FnMut`, so references to captured variables can't escape the closure
2018-07-15 14:11:54 -07:00
error: aborting due to previous error