2017-12-04 12:04:38 -06:00
|
|
|
note: External requirements
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/ty-param-closure-outlives-from-where-clause.rs:27:26
|
2017-12-04 12:04:38 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | with_signature(a, b, |x, y| {
|
2017-12-04 12:04:38 -06:00
|
|
|
| __________________________^
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | |
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | | //
|
|
|
|
LL | | // See `correct_region`, which explains the point of this
|
2017-12-04 12:04:38 -06:00
|
|
|
... |
|
2018-08-31 12:27:11 -05:00
|
|
|
LL | | require(&x, &y)
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | | })
|
2017-12-04 12:04:38 -06:00
|
|
|
| |_____^
|
|
|
|
|
|
2019-11-05 05:49:36 -06:00
|
|
|
= note: defining type: DefId(0:14 ~ ty_param_closure_outlives_from_where_clause[317d]::no_region[0]::{{closure}}[0]) with closure substs [
|
2017-12-04 12:04:38 -06:00
|
|
|
T,
|
|
|
|
i32,
|
2019-04-03 09:30:08 -05:00
|
|
|
extern "rust-call" fn((std::cell::Cell<&'_#1r ()>, T)),
|
2017-12-04 12:04:38 -06:00
|
|
|
]
|
2018-09-07 12:35:16 -05:00
|
|
|
= note: late-bound region is '_#2r
|
2018-09-06 21:57:05 -05:00
|
|
|
= note: number of external vids: 3
|
2017-12-04 12:04:38 -06:00
|
|
|
= note: where T: '_#1r
|
|
|
|
|
|
|
|
note: No external requirements
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/ty-param-closure-outlives-from-where-clause.rs:26:1
|
2017-12-04 12:04:38 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | / fn no_region<'a, T>(a: Cell<&'a ()>, b: T) {
|
|
|
|
LL | | with_signature(a, b, |x, y| {
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | |
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | | //
|
2017-12-04 12:04:38 -06:00
|
|
|
... |
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | | })
|
|
|
|
LL | | }
|
2017-12-04 12:04:38 -06:00
|
|
|
| |_^
|
|
|
|
|
|
2019-11-05 05:49:36 -06:00
|
|
|
= note: defining type: DefId(0:11 ~ ty_param_closure_outlives_from_where_clause[317d]::no_region[0]) with substs [
|
2019-04-03 09:30:08 -05:00
|
|
|
T,
|
2017-12-04 12:04:38 -06:00
|
|
|
]
|
|
|
|
|
2018-07-31 07:35:43 -05:00
|
|
|
error[E0309]: the parameter type `T` may not live long enough
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/ty-param-closure-outlives-from-where-clause.rs:27:26
|
2018-07-31 07:35:43 -05:00
|
|
|
|
|
|
|
|
LL | with_signature(a, b, |x, y| {
|
|
|
|
| __________________________^
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | |
|
2018-07-31 07:35:43 -05:00
|
|
|
LL | | //
|
|
|
|
LL | | // See `correct_region`, which explains the point of this
|
|
|
|
... |
|
2018-08-31 12:27:11 -05:00
|
|
|
LL | | require(&x, &y)
|
2018-07-31 07:35:43 -05:00
|
|
|
LL | | })
|
|
|
|
| |_____^
|
|
|
|
|
|
2019-11-05 05:49:36 -06:00
|
|
|
= help: consider adding an explicit lifetime bound `T: ReFree(DefId(0:11 ~ ty_param_closure_outlives_from_where_clause[317d]::no_region[0]), BrNamed(crate0:DefIndex(12), 'a))`...
|
2018-07-31 07:35:43 -05:00
|
|
|
|
2018-02-22 17:46:02 -06:00
|
|
|
note: External requirements
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/ty-param-closure-outlives-from-where-clause.rs:43:26
|
2018-02-22 17:46:02 -06:00
|
|
|
|
|
2018-02-24 17:59:34 -06:00
|
|
|
LL | with_signature(a, b, |x, y| {
|
2018-02-22 17:46:02 -06:00
|
|
|
| __________________________^
|
2018-02-24 17:59:34 -06:00
|
|
|
LL | | // Key point of this test:
|
|
|
|
LL | | //
|
|
|
|
LL | | // The *closure* is being type-checked with all of its free
|
2018-02-22 17:46:02 -06:00
|
|
|
... |
|
2018-02-24 17:59:34 -06:00
|
|
|
LL | | require(&x, &y)
|
|
|
|
LL | | })
|
2018-02-22 17:46:02 -06:00
|
|
|
| |_____^
|
|
|
|
|
|
2019-11-05 05:49:36 -06:00
|
|
|
= note: defining type: DefId(0:18 ~ ty_param_closure_outlives_from_where_clause[317d]::correct_region[0]::{{closure}}[0]) with closure substs [
|
2018-02-22 17:46:02 -06:00
|
|
|
'_#1r,
|
|
|
|
T,
|
|
|
|
i32,
|
2019-04-03 09:30:08 -05:00
|
|
|
extern "rust-call" fn((std::cell::Cell<&'_#2r ()>, T)),
|
2018-02-22 17:46:02 -06:00
|
|
|
]
|
2018-09-06 21:57:05 -05:00
|
|
|
= note: number of external vids: 3
|
2018-02-22 17:46:02 -06:00
|
|
|
= note: where T: '_#2r
|
|
|
|
|
2017-12-04 12:04:38 -06:00
|
|
|
note: No external requirements
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/ty-param-closure-outlives-from-where-clause.rs:39:1
|
2017-12-04 12:04:38 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | / fn correct_region<'a, T>(a: Cell<&'a ()>, b: T)
|
|
|
|
LL | | where
|
|
|
|
LL | | T: 'a,
|
|
|
|
LL | | {
|
2017-12-04 12:04:38 -06:00
|
|
|
... |
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | | })
|
|
|
|
LL | | }
|
2017-12-04 12:04:38 -06:00
|
|
|
| |_^
|
|
|
|
|
|
2019-11-05 05:49:36 -06:00
|
|
|
= note: defining type: DefId(0:15 ~ ty_param_closure_outlives_from_where_clause[317d]::correct_region[0]) with substs [
|
2017-12-04 12:04:38 -06:00
|
|
|
'_#1r,
|
2019-04-03 09:30:08 -05:00
|
|
|
T,
|
2017-12-04 12:04:38 -06:00
|
|
|
]
|
|
|
|
|
2018-02-22 17:46:02 -06:00
|
|
|
note: External requirements
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/ty-param-closure-outlives-from-where-clause.rs:64:26
|
2018-02-22 17:46:02 -06:00
|
|
|
|
|
2018-02-24 17:59:34 -06:00
|
|
|
LL | with_signature(a, b, |x, y| {
|
2018-02-22 17:46:02 -06:00
|
|
|
| __________________________^
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | |
|
2018-02-24 17:59:34 -06:00
|
|
|
LL | | // See `correct_region`
|
|
|
|
LL | | require(&x, &y)
|
|
|
|
LL | | })
|
2018-02-22 17:46:02 -06:00
|
|
|
| |_____^
|
|
|
|
|
|
2019-11-05 05:49:36 -06:00
|
|
|
= note: defining type: DefId(0:23 ~ ty_param_closure_outlives_from_where_clause[317d]::wrong_region[0]::{{closure}}[0]) with closure substs [
|
2018-02-22 17:46:02 -06:00
|
|
|
'_#1r,
|
|
|
|
T,
|
|
|
|
i32,
|
2019-04-03 09:30:08 -05:00
|
|
|
extern "rust-call" fn((std::cell::Cell<&'_#2r ()>, T)),
|
2018-02-22 17:46:02 -06:00
|
|
|
]
|
2018-09-07 12:35:16 -05:00
|
|
|
= note: late-bound region is '_#3r
|
2018-09-06 21:57:05 -05:00
|
|
|
= note: number of external vids: 4
|
2018-02-22 17:46:02 -06:00
|
|
|
= note: where T: '_#2r
|
|
|
|
|
2017-12-04 12:04:38 -06:00
|
|
|
note: No external requirements
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/ty-param-closure-outlives-from-where-clause.rs:60:1
|
2017-12-04 12:04:38 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | / fn wrong_region<'a, 'b, T>(a: Cell<&'a ()>, b: T)
|
|
|
|
LL | | where
|
|
|
|
LL | | T: 'b,
|
|
|
|
LL | | {
|
2017-12-04 12:04:38 -06:00
|
|
|
... |
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | | })
|
|
|
|
LL | | }
|
2017-12-04 12:04:38 -06:00
|
|
|
| |_^
|
|
|
|
|
|
2019-11-05 05:49:36 -06:00
|
|
|
= note: defining type: DefId(0:19 ~ ty_param_closure_outlives_from_where_clause[317d]::wrong_region[0]) with substs [
|
2017-12-04 12:04:38 -06:00
|
|
|
'_#1r,
|
2019-04-03 09:30:08 -05:00
|
|
|
T,
|
2017-12-04 12:04:38 -06:00
|
|
|
]
|
|
|
|
|
2018-07-31 07:35:43 -05:00
|
|
|
error[E0309]: the parameter type `T` may not live long enough
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/ty-param-closure-outlives-from-where-clause.rs:64:26
|
2018-07-31 07:35:43 -05:00
|
|
|
|
|
|
|
|
LL | with_signature(a, b, |x, y| {
|
|
|
|
| __________________________^
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | |
|
2018-07-31 07:35:43 -05:00
|
|
|
LL | | // See `correct_region`
|
|
|
|
LL | | require(&x, &y)
|
|
|
|
LL | | })
|
|
|
|
| |_____^
|
|
|
|
|
|
2019-11-05 05:49:36 -06:00
|
|
|
= help: consider adding an explicit lifetime bound `T: ReFree(DefId(0:19 ~ ty_param_closure_outlives_from_where_clause[317d]::wrong_region[0]), BrNamed(crate0:DefIndex(20), 'a))`...
|
2018-07-31 07:35:43 -05:00
|
|
|
|
2018-02-22 17:46:02 -06:00
|
|
|
note: External requirements
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/ty-param-closure-outlives-from-where-clause.rs:77:26
|
2018-02-22 17:46:02 -06:00
|
|
|
|
|
2018-02-24 17:59:34 -06:00
|
|
|
LL | with_signature(a, b, |x, y| {
|
2018-02-22 17:46:02 -06:00
|
|
|
| __________________________^
|
2018-02-24 17:59:34 -06:00
|
|
|
LL | | // See `correct_region`
|
|
|
|
LL | | require(&x, &y)
|
|
|
|
LL | | })
|
2018-02-22 17:46:02 -06:00
|
|
|
| |_____^
|
|
|
|
|
|
2019-11-05 05:49:36 -06:00
|
|
|
= note: defining type: DefId(0:28 ~ ty_param_closure_outlives_from_where_clause[317d]::outlives_region[0]::{{closure}}[0]) with closure substs [
|
2018-02-22 17:46:02 -06:00
|
|
|
'_#1r,
|
|
|
|
'_#2r,
|
|
|
|
T,
|
|
|
|
i32,
|
2019-04-03 09:30:08 -05:00
|
|
|
extern "rust-call" fn((std::cell::Cell<&'_#3r ()>, T)),
|
2018-02-22 17:46:02 -06:00
|
|
|
]
|
2018-09-06 21:57:05 -05:00
|
|
|
= note: number of external vids: 4
|
2018-02-22 17:46:02 -06:00
|
|
|
= note: where T: '_#3r
|
|
|
|
|
2017-12-04 12:04:38 -06:00
|
|
|
note: No external requirements
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/ty-param-closure-outlives-from-where-clause.rs:72:1
|
2017-12-04 12:04:38 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | / fn outlives_region<'a, 'b, T>(a: Cell<&'a ()>, b: T)
|
|
|
|
LL | | where
|
|
|
|
LL | | T: 'b,
|
|
|
|
LL | | 'b: 'a,
|
2017-12-04 12:04:38 -06:00
|
|
|
... |
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | | })
|
|
|
|
LL | | }
|
2017-12-04 12:04:38 -06:00
|
|
|
| |_^
|
|
|
|
|
|
2019-11-05 05:49:36 -06:00
|
|
|
= note: defining type: DefId(0:24 ~ ty_param_closure_outlives_from_where_clause[317d]::outlives_region[0]) with substs [
|
2017-12-04 12:04:38 -06:00
|
|
|
'_#1r,
|
|
|
|
'_#2r,
|
2019-04-03 09:30:08 -05:00
|
|
|
T,
|
2017-12-04 12:04:38 -06:00
|
|
|
]
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2018-03-03 08:59:40 -06:00
|
|
|
For more information about this error, try `rustc --explain E0309`.
|