You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<anon>:18:23: 22:6 error: `r` does not live long enough
<anon>:18 r.listen(Box::new(|| {
<anon>:19 x = Some(22);
<anon>:20 y = Some(44);
<anon>:21 r.something();
<anon>:22 }));
<anon>:15:22: 23:2 note: reference must be valid for the block suffix following statement 1 at 15:21...
<anon>:15 let mut y = None;
<anon>:16 let mut r = Reactor::new();
<anon>:17
<anon>:18 r.listen(Box::new(|| {
<anon>:19 x = Some(22);
<anon>:20 y = Some(44);
...
<anon>:16:32: 23:2 note: ...but borrowed value is only valid for the block suffix following statement 2 at 16:31
<anon>:16 let mut r = Reactor::new();
<anon>:17
<anon>:18 r.listen(Box::new(|| {
<anon>:19 x = Some(22);
<anon>:20 y = Some(44);
<anon>:21 r.something();
...
error: aborting due to previous error
playpen: application terminated with error code 101
the problem here is that the variable r is being used mutably by both listen and the closure, as you can see from this fixed version: http://is.gd/Dz63j7
The text was updated successfully, but these errors were encountered:
This example: http://is.gd/oDK41V yields an amazingly bad error message:
the problem here is that the variable
r
is being used mutably by bothlisten
and the closure, as you can see from this fixed version: http://is.gd/Dz63j7The text was updated successfully, but these errors were encountered: