File: not-found-unsatisfied-bounds-in-multiple-impls.stderr

package info (click to toggle)
rustc-web 1.70.0%2Bdfsg1-7~deb11u1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,517,036 kB
  • sloc: xml: 147,962; javascript: 10,210; sh: 8,590; python: 8,220; ansic: 5,901; cpp: 4,635; makefile: 4,006; asm: 2,856
file content (20 lines) | stat: -rw-r--r-- 782 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
error: the associated type `X` exists for `S<Featureless, Featureless>`, but its trait bounds were not satisfied
  --> $DIR/not-found-unsatisfied-bounds-in-multiple-impls.rs:19:43
   |
LL | struct S<A, B>(A, B);
   | -------------- associated item `X` not found for this struct
LL | struct Featureless;
   | ------------------
   | |
   | doesn't satisfy `Featureless: One`
   | doesn't satisfy `Featureless: Two`
...
LL |     let _: S::<Featureless, Featureless>::X;
   |                                           ^ associated type cannot be referenced on `S<Featureless, Featureless>` due to unsatisfied trait bounds
   |
   = note: the following trait bounds were not satisfied:
           `Featureless: One`
           `Featureless: Two`

error: aborting due to previous error