summaryrefslogtreecommitdiffstats
path: root/src/test/ui/associated-types/associated-types-eq-hr.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/associated-types/associated-types-eq-hr.stderr')
-rw-r--r--src/test/ui/associated-types/associated-types-eq-hr.stderr47
1 files changed, 47 insertions, 0 deletions
diff --git a/src/test/ui/associated-types/associated-types-eq-hr.stderr b/src/test/ui/associated-types/associated-types-eq-hr.stderr
new file mode 100644
index 000000000..b306ae273
--- /dev/null
+++ b/src/test/ui/associated-types/associated-types-eq-hr.stderr
@@ -0,0 +1,47 @@
+error[E0271]: type mismatch resolving `for<'x> <UintStruct as TheTrait<&'x isize>>::A == &'x isize`
+ --> $DIR/associated-types-eq-hr.rs:87:5
+ |
+LL | foo::<UintStruct>();
+ | ^^^^^^^^^^^^^^^^^ type mismatch resolving `for<'x> <UintStruct as TheTrait<&'x isize>>::A == &'x isize`
+ |
+note: expected this to be `&isize`
+ --> $DIR/associated-types-eq-hr.rs:26:14
+ |
+LL | type A = &'a usize;
+ | ^^^^^^^^^
+ = note: expected reference `&isize`
+ found reference `&usize`
+note: required by a bound in `foo`
+ --> $DIR/associated-types-eq-hr.rs:45:36
+ |
+LL | fn foo<T>()
+ | --- required by a bound in this
+LL | where
+LL | T: for<'x> TheTrait<&'x isize, A = &'x isize>,
+ | ^^^^^^^^^^^^^ required by this bound in `foo`
+
+error[E0271]: type mismatch resolving `for<'x> <IntStruct as TheTrait<&'x isize>>::A == &'x usize`
+ --> $DIR/associated-types-eq-hr.rs:91:5
+ |
+LL | bar::<IntStruct>();
+ | ^^^^^^^^^^^^^^^^ type mismatch resolving `for<'x> <IntStruct as TheTrait<&'x isize>>::A == &'x usize`
+ |
+note: expected this to be `&usize`
+ --> $DIR/associated-types-eq-hr.rs:14:14
+ |
+LL | type A = &'a isize;
+ | ^^^^^^^^^
+ = note: expected reference `&usize`
+ found reference `&isize`
+note: required by a bound in `bar`
+ --> $DIR/associated-types-eq-hr.rs:52:36
+ |
+LL | fn bar<T>()
+ | --- required by a bound in this
+LL | where
+LL | T: for<'x> TheTrait<&'x isize, A = &'x usize>,
+ | ^^^^^^^^^^^^^ required by this bound in `bar`
+
+error: aborting due to 2 previous errors
+
+For more information about this error, try `rustc --explain E0271`.