summaryrefslogtreecommitdiffstats
path: root/src/test/ui/impl-trait/recursive-type-alias-impl-trait-declaration-too-subtle.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/impl-trait/recursive-type-alias-impl-trait-declaration-too-subtle.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/impl-trait/recursive-type-alias-impl-trait-declaration-too-subtle.stderr')
-rw-r--r--src/test/ui/impl-trait/recursive-type-alias-impl-trait-declaration-too-subtle.stderr49
1 files changed, 0 insertions, 49 deletions
diff --git a/src/test/ui/impl-trait/recursive-type-alias-impl-trait-declaration-too-subtle.stderr b/src/test/ui/impl-trait/recursive-type-alias-impl-trait-declaration-too-subtle.stderr
deleted file mode 100644
index 3dda5761a..000000000
--- a/src/test/ui/impl-trait/recursive-type-alias-impl-trait-declaration-too-subtle.stderr
+++ /dev/null
@@ -1,49 +0,0 @@
-error: unconstrained opaque type
- --> $DIR/recursive-type-alias-impl-trait-declaration-too-subtle.rs:4:16
- |
-LL | type Foo = impl PartialEq<(Foo, i32)>;
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^
- |
- = note: `Foo` must be used in combination with a concrete type within the same module
-
-error[E0053]: method `eq` has an incompatible type for trait
- --> $DIR/recursive-type-alias-impl-trait-declaration-too-subtle.rs:10:30
- |
-LL | type Foo = impl PartialEq<(Foo, i32)>;
- | -------------------------- the found opaque type
-...
-LL | fn eq(&self, _other: &(Foo, i32)) -> bool {
- | ^^^^^^^^^^^
- | |
- | expected struct `a::Bar`, found opaque type
- | help: change the parameter type to match the trait: `&(a::Bar, i32)`
- |
- = note: expected fn pointer `fn(&a::Bar, &(a::Bar, i32)) -> _`
- found fn pointer `fn(&a::Bar, &(a::Foo, i32)) -> _`
-
-error: unconstrained opaque type
- --> $DIR/recursive-type-alias-impl-trait-declaration-too-subtle.rs:18:16
- |
-LL | type Foo = impl PartialEq<(Foo, i32)>;
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^
- |
- = note: `Foo` must be used in combination with a concrete type within the same module
-
-error[E0053]: method `eq` has an incompatible type for trait
- --> $DIR/recursive-type-alias-impl-trait-declaration-too-subtle.rs:24:30
- |
-LL | type Foo = impl PartialEq<(Foo, i32)>;
- | -------------------------- the expected opaque type
-...
-LL | fn eq(&self, _other: &(Bar, i32)) -> bool {
- | ^^^^^^^^^^^
- | |
- | expected opaque type, found struct `b::Bar`
- | help: change the parameter type to match the trait: `&(b::Foo, i32)`
- |
- = note: expected fn pointer `fn(&b::Bar, &(b::Foo, i32)) -> _`
- found fn pointer `fn(&b::Bar, &(b::Bar, i32)) -> _`
-
-error: aborting due to 4 previous errors
-
-For more information about this error, try `rustc --explain E0053`.