2020-01-10 14:13:05 +00:00
|
|
|
note: external requirements
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/ty-param-closure-approximate-lower-bound.rs:24:24
|
2017-12-08 15:47:36 -05:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | twice(cell, value, |a, b| invoke(a, b));
|
2022-08-31 20:17:32 +02:00
|
|
|
| ^^^^^^
|
2017-12-08 15:47:36 -05:00
|
|
|
|
|
2020-08-31 18:11:44 +01:00
|
|
|
= note: defining type: generic::<T>::{closure#0} with closure substs [
|
2017-12-08 15:47:36 -05:00
|
|
|
i16,
|
2023-04-22 00:08:38 +00:00
|
|
|
for<Region(BrAnon(None)), Region(BrAnon(None))> extern "rust-call" fn((std::option::Option<std::cell::Cell<&'?1 &ReLateBound(DebruijnIndex(0), BoundRegion { var: 0, kind: BrAnon(None) }) ()>>, &ReLateBound(DebruijnIndex(0), BoundRegion { var: 1, kind: BrAnon(None) }) T)),
|
2020-03-13 03:23:38 +02:00
|
|
|
(),
|
2017-12-08 15:47:36 -05:00
|
|
|
]
|
2018-09-06 22:57:05 -04:00
|
|
|
= note: number of external vids: 2
|
2023-04-22 00:08:38 +00:00
|
|
|
= note: where T: '?1
|
2017-12-08 15:47:36 -05:00
|
|
|
|
2020-01-10 14:13:05 +00:00
|
|
|
note: no external requirements
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/ty-param-closure-approximate-lower-bound.rs:22:1
|
2017-12-08 15:47:36 -05:00
|
|
|
|
|
2022-08-31 20:17:32 +02:00
|
|
|
LL | fn generic<T>(value: T) {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
2017-12-08 15:47:36 -05:00
|
|
|
|
|
2019-11-30 18:47:21 +02:00
|
|
|
= note: defining type: generic::<T>
|
2017-12-08 15:47:36 -05:00
|
|
|
|
2020-01-10 14:13:05 +00:00
|
|
|
note: external requirements
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/ty-param-closure-approximate-lower-bound.rs:29:24
|
2018-02-22 18:46:02 -05:00
|
|
|
|
|
2018-02-25 02:59:34 +03:00
|
|
|
LL | twice(cell, value, |a, b| invoke(a, b));
|
2022-08-31 20:17:32 +02:00
|
|
|
| ^^^^^^
|
2018-02-22 18:46:02 -05:00
|
|
|
|
|
2020-08-31 18:11:44 +01:00
|
|
|
= note: defining type: generic_fail::<T>::{closure#0} with closure substs [
|
2018-02-22 18:46:02 -05:00
|
|
|
i16,
|
2023-04-22 00:08:38 +00:00
|
|
|
for<Region(BrAnon(None)), Region(BrAnon(None))> extern "rust-call" fn((std::option::Option<std::cell::Cell<&'?1 &ReLateBound(DebruijnIndex(0), BoundRegion { var: 0, kind: BrAnon(None) }) ()>>, &ReLateBound(DebruijnIndex(0), BoundRegion { var: 1, kind: BrAnon(None) }) T)),
|
2020-03-13 03:23:38 +02:00
|
|
|
(),
|
2018-02-22 18:46:02 -05:00
|
|
|
]
|
2023-04-22 00:08:38 +00:00
|
|
|
= note: late-bound region is '?2
|
2018-09-06 22:57:05 -04:00
|
|
|
= note: number of external vids: 3
|
2023-04-22 00:08:38 +00:00
|
|
|
= note: where T: '?1
|
2018-02-22 18:46:02 -05:00
|
|
|
|
2020-01-10 14:13:05 +00:00
|
|
|
note: no external requirements
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/ty-param-closure-approximate-lower-bound.rs:28:1
|
2017-12-08 15:47:36 -05:00
|
|
|
|
|
2022-08-31 20:17:32 +02:00
|
|
|
LL | fn generic_fail<'a, T>(cell: Cell<&'a ()>, value: T) {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-12-08 15:47:36 -05:00
|
|
|
|
|
2019-11-30 18:47:21 +02:00
|
|
|
= note: defining type: generic_fail::<T>
|
2017-12-08 15:47:36 -05:00
|
|
|
|
2018-07-31 14:35:43 +02:00
|
|
|
error[E0309]: the parameter type `T` may not live long enough
|
2022-10-03 13:45:02 +03:00
|
|
|
--> $DIR/ty-param-closure-approximate-lower-bound.rs:29:31
|
2018-07-31 14:35:43 +02:00
|
|
|
|
|
|
|
|
LL | twice(cell, value, |a, b| invoke(a, b));
|
2022-10-03 13:45:02 +03:00
|
|
|
| ^^^^^^^^^^^^ ...so that the type `T` will meet its required lifetime bounds
|
2022-03-14 15:56:37 +01:00
|
|
|
|
|
|
|
|
help: consider adding an explicit lifetime bound...
|
|
|
|
|
|
|
|
|
LL | fn generic_fail<'a, T: 'a>(cell: Cell<&'a ()>, value: T) {
|
|
|
|
| ++++
|
2018-07-31 14:35:43 +02:00
|
|
|
|
2017-12-08 15:47:36 -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 E0309`.
|