summaryrefslogtreecommitdiffstats
path: root/tests/ui/associated-inherent-types/not-found-unsatisfied-bounds-in-multiple-impls.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/associated-inherent-types/not-found-unsatisfied-bounds-in-multiple-impls.stderr')
-rw-r--r--tests/ui/associated-inherent-types/not-found-unsatisfied-bounds-in-multiple-impls.stderr20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/ui/associated-inherent-types/not-found-unsatisfied-bounds-in-multiple-impls.stderr b/tests/ui/associated-inherent-types/not-found-unsatisfied-bounds-in-multiple-impls.stderr
new file mode 100644
index 000000000..3ddab25de
--- /dev/null
+++ b/tests/ui/associated-inherent-types/not-found-unsatisfied-bounds-in-multiple-impls.stderr
@@ -0,0 +1,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
+