File: trait-associated-constant.stderr

package info (click to toggle)
rustc 1.70.0%2Bdfsg1-9
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, 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 (22 lines) | stat: -rw-r--r-- 774 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
error[E0308]: const not compatible with trait
  --> $DIR/trait-associated-constant.rs:21:5
   |
LL |     const AC: Option<&'c str> = None;
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^ lifetime mismatch
   |
   = note: expected enum `Option<&'b str>`
              found enum `Option<&'c str>`
note: the lifetime `'c` as defined here...
  --> $DIR/trait-associated-constant.rs:20:18
   |
LL | impl<'a: 'b, 'b, 'c> Anything<'a, 'b> for FailStruct {
   |                  ^^
note: ...does not necessarily outlive the lifetime `'b` as defined here
  --> $DIR/trait-associated-constant.rs:20:14
   |
LL | impl<'a: 'b, 'b, 'c> Anything<'a, 'b> for FailStruct {
   |              ^^

error: aborting due to previous error

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