File: propagate-from-trait-match.stderr

package info (click to toggle)
rustc 1.70.0%2Bdfsg1-9
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 722,120 kB
  • sloc: xml: 147,962; javascript: 10,210; sh: 8,590; python: 8,220; ansic: 5,901; cpp: 4,635; makefile: 4,001; asm: 2,856
file content (38 lines) | stat: -rw-r--r-- 1,112 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
note: external requirements
  --> $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,)),
               (),
           ]
   = note: number of external vids: 2
   = note: where T: '_#1r

note: no external requirements
  --> $DIR/propagate-from-trait-match.rs:28:1
   |
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
   |
help: consider adding an explicit lifetime bound...
   |
LL |     T: Trait<'a> + 'a,
   |                  ++++

error: aborting due to previous error

For more information about this error, try `rustc --explain E0309`.