rust/tests/ui/nll/closure-requirements/propagate-from-trait-match.stderr

39 lines
1.1 KiB
Plaintext
Raw Normal View History

2020-01-10 14:13:05 +00:00
note: external requirements
2018-12-25 08:56:47 -07:00
--> $DIR/propagate-from-trait-match.rs:32:36
|
LL | establish_relationships(value, |value| {
| ^^^^^^^
|
= note: defining type: supply::<'_#1r, T>::{closure#0} with closure substs [
i32,
extern "rust-call" fn((T,)),
(),
]
2018-09-06 22:57:05 -04:00
= note: number of external vids: 2
= note: where T: '_#1r
2020-01-10 14:13:05 +00:00
note: no external requirements
2018-12-25 08:56:47 -07:00
--> $DIR/propagate-from-trait-match.rs:28:1
|
2018-02-23 03:42:32 +03:00
LL | / fn supply<'a, T>(value: T)
LL | | where
LL | | T: Trait<'a>,
| |_________________^
|
= note: defining type: supply::<'_#1r, T>
error[E0309]: the parameter type `T` may not live long enough
--> $DIR/propagate-from-trait-match.rs:43:9
|
LL | require(value);
| ^^^^^^^^^^^^^^ ...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 | T: Trait<'a> + 'a,
| ++++
error: aborting due to previous error
2018-03-03 15:59:40 +01:00
For more information about this error, try `rustc --explain E0309`.