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