2017-12-03 05:16:52 -06:00
|
|
|
note: No external requirements
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/escape-argument.rs:26:38
|
2017-11-22 16:39:46 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let mut closure = expect_sig(|p, y| *p = y);
|
2017-11-22 16:39:46 -06:00
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
2019-11-30 10:47:21 -06:00
|
|
|
= note: defining type: test::{{closure}}#0 with closure substs [
|
2017-11-22 16:39:46 -06:00
|
|
|
i16,
|
2019-11-30 09:29:56 -06:00
|
|
|
for<'r, 's> extern "rust-call" fn((&ReLateBound(DebruijnIndex(0), BrNamed('r)) mut &ReLateBound(DebruijnIndex(0), BrNamed('s)) i32, &ReLateBound(DebruijnIndex(0), BrNamed('s)) i32)),
|
2017-11-22 16:39:46 -06:00
|
|
|
]
|
|
|
|
|
|
|
|
note: No external requirements
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/escape-argument.rs:20:1
|
2017-11-22 16:39:46 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | / fn test() {
|
|
|
|
LL | | let x = 44;
|
|
|
|
LL | | let mut p = &x;
|
|
|
|
LL | |
|
2017-11-22 16:39:46 -06:00
|
|
|
... |
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | | deref(p);
|
|
|
|
LL | | }
|
2017-11-22 16:39:46 -06:00
|
|
|
| |_^
|
|
|
|
|
|
2019-11-30 10:47:21 -06:00
|
|
|
= note: defining type: test
|
2017-11-22 16:39:46 -06:00
|
|
|
|
2017-12-11 11:29:31 -06:00
|
|
|
error[E0597]: `y` does not live long enough
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/escape-argument.rs:27:25
|
2017-11-22 16:39:46 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | closure(&mut p, &y);
|
2017-12-14 11:57:34 -06:00
|
|
|
| ^^ borrowed value does not live long enough
|
2019-03-09 06:03:44 -06:00
|
|
|
LL |
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | }
|
2018-07-22 10:02:31 -05:00
|
|
|
| - `y` dropped here while still borrowed
|
2018-02-24 17:01:39 -06:00
|
|
|
LL |
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | deref(p);
|
2017-12-12 14:29:37 -06:00
|
|
|
| - borrow later used here
|
2017-11-22 16:39:46 -06:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2018-03-03 08:59:40 -06:00
|
|
|
For more information about this error, try `rustc --explain E0597`.
|