summaryrefslogtreecommitdiffstats
path: root/src/test/ui/associated-types/associated-types-eq-hr.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /src/test/ui/associated-types/associated-types-eq-hr.stderr
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
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, 0 insertions, 47 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
deleted file mode 100644
index 6cff403b3..000000000
--- a/src/test/ui/associated-types/associated-types-eq-hr.stderr
+++ /dev/null
@@ -1,47 +0,0 @@
-error[E0271]: type mismatch resolving `for<'x> <UintStruct as TheTrait<&'x isize>>::A == &'x isize`
- --> $DIR/associated-types-eq-hr.rs:87:11
- |
-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:11
- |
-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`.