2020-01-10 08:13:05 -06:00
|
|
|
note: external requirements
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/propagate-from-trait-match.rs:32:36
|
2017-12-06 03:56:03 -06:00
|
|
|
|
|
2022-08-31 13:17:32 -05:00
|
|
|
LL | establish_relationships(value, |value| {
|
|
|
|
| ^^^^^^^
|
2017-12-06 03:56:03 -06:00
|
|
|
|
|
2020-08-31 12:11:44 -05:00
|
|
|
= note: defining type: supply::<'_#1r, T>::{closure#0} with closure substs [
|
2017-12-06 03:56:03 -06:00
|
|
|
i32,
|
2019-04-03 09:30:08 -05:00
|
|
|
extern "rust-call" fn((T,)),
|
2020-03-12 20:23:38 -05:00
|
|
|
(),
|
2017-12-06 03:56:03 -06:00
|
|
|
]
|
2018-09-06 21:57:05 -05:00
|
|
|
= note: number of external vids: 2
|
2017-12-06 03:56:03 -06:00
|
|
|
= note: where T: '_#1r
|
|
|
|
|
2020-01-10 08:13:05 -06:00
|
|
|
note: no external requirements
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/propagate-from-trait-match.rs:28:1
|
2017-12-06 03:56:03 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | / fn supply<'a, T>(value: T)
|
|
|
|
LL | | where
|
|
|
|
LL | | T: Trait<'a>,
|
2022-08-31 13:17:32 -05:00
|
|
|
| |_________________^
|
2017-12-06 03:56:03 -06:00
|
|
|
|
|
2019-11-30 10:47:21 -06:00
|
|
|
= note: defining type: supply::<'_#1r, T>
|
2017-12-06 03:56:03 -06:00
|
|
|
|
2018-07-31 07:35:43 -05:00
|
|
|
error[E0309]: the parameter type `T` may not live long enough
|
2022-10-03 05:45:02 -05:00
|
|
|
--> $DIR/propagate-from-trait-match.rs:43:9
|
2018-07-31 07:35:43 -05:00
|
|
|
|
|
2022-10-03 05:45:02 -05:00
|
|
|
LL | require(value);
|
|
|
|
| ^^^^^^^^^^^^^^ ...so that the type `T` will meet its required lifetime bounds
|
2022-03-14 09:56:37 -05:00
|
|
|
|
|
|
|
|
help: consider adding an explicit lifetime bound...
|
|
|
|
|
|
|
|
|
LL | T: Trait<'a> + 'a,
|
|
|
|
| ++++
|
2018-07-31 07:35:43 -05:00
|
|
|
|
2017-12-06 03:56:03 -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 E0309`.
|