summaryrefslogtreecommitdiffstats
path: root/tests/ui/associated-inherent-types/not-found-unsatisfied-bounds-in-multiple-impls.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/associated-inherent-types/not-found-unsatisfied-bounds-in-multiple-impls.rs')
-rw-r--r--tests/ui/associated-inherent-types/not-found-unsatisfied-bounds-in-multiple-impls.rs20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/ui/associated-inherent-types/not-found-unsatisfied-bounds-in-multiple-impls.rs b/tests/ui/associated-inherent-types/not-found-unsatisfied-bounds-in-multiple-impls.rs
new file mode 100644
index 000000000..5b0e8de9c
--- /dev/null
+++ b/tests/ui/associated-inherent-types/not-found-unsatisfied-bounds-in-multiple-impls.rs
@@ -0,0 +1,20 @@
+#![feature(inherent_associated_types)]
+#![allow(incomplete_features)]
+
+struct S<A, B>(A, B);
+struct Featureless;
+
+trait One {}
+trait Two {}
+
+impl<T: One> S<Featureless, T> {
+ type X = ();
+}
+
+impl<T: Two> S<T, Featureless> {
+ type X = String;
+}
+
+fn main() {
+ let _: S::<Featureless, Featureless>::X; //~ ERROR the associated type `X` exists for `S<Featureless, Featureless>`, but its trait bounds were not satisfied
+}