2020-01-10 14:13:05 +00:00
|
|
|
note: no external requirements
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/escape-argument-callee.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);
|
2017-11-22 17:39:46 -05:00
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
2019-11-30 18:47:21 +02:00
|
|
|
= note: defining type: test::{{closure}}#0 with closure substs [
|
2017-11-22 17:39:46 -05:00
|
|
|
i16,
|
2019-11-30 17:29:56 +02:00
|
|
|
for<'r, 's, 't0> extern "rust-call" fn((&ReLateBound(DebruijnIndex(0), BrNamed('r)) mut &ReLateBound(DebruijnIndex(0), BrNamed('s)) i32, &ReLateBound(DebruijnIndex(0), BrNamed('t0)) i32)),
|
2020-03-13 03:23:38 +02:00
|
|
|
(),
|
2017-11-22 17:39:46 -05:00
|
|
|
]
|
|
|
|
|
2018-12-11 15:49:40 -06:00
|
|
|
error: lifetime may not live long enough
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/escape-argument-callee.rs:26:45
|
2018-07-31 14:35:43 +02:00
|
|
|
|
|
|
|
|
LL | let mut closure = expect_sig(|p, y| *p = y);
|
2018-09-15 18:30:29 +01:00
|
|
|
| - - ^^^^^^ assignment requires that `'1` must outlive `'2`
|
2018-07-31 14:35:43 +02:00
|
|
|
| | |
|
|
|
|
| | has type `&'1 i32`
|
2018-12-10 17:36:24 +02:00
|
|
|
| has type `&'_#2r mut &'2 i32`
|
2018-07-31 14:35:43 +02:00
|
|
|
|
2020-01-10 14:13:05 +00:00
|
|
|
note: no external requirements
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/escape-argument-callee.rs:20:1
|
2017-11-22 17:39:46 -05:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | / fn test() {
|
|
|
|
LL | | let x = 44;
|
|
|
|
LL | | let mut p = &x;
|
|
|
|
LL | |
|
2017-11-22 17:39:46 -05:00
|
|
|
... |
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | | deref(p);
|
|
|
|
LL | | }
|
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
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|