summaryrefslogtreecommitdiffstats
path: root/tests/ui/impl-trait/impl-generic-mismatch.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 /tests/ui/impl-trait/impl-generic-mismatch.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 'tests/ui/impl-trait/impl-generic-mismatch.stderr')
-rw-r--r--tests/ui/impl-trait/impl-generic-mismatch.stderr55
1 files changed, 55 insertions, 0 deletions
diff --git a/tests/ui/impl-trait/impl-generic-mismatch.stderr b/tests/ui/impl-trait/impl-generic-mismatch.stderr
new file mode 100644
index 000000000..973b65bfd
--- /dev/null
+++ b/tests/ui/impl-trait/impl-generic-mismatch.stderr
@@ -0,0 +1,55 @@
+error[E0643]: method `foo` has incompatible signature for trait
+ --> $DIR/impl-generic-mismatch.rs:8:12
+ |
+LL | fn foo(&self, _: &impl Debug);
+ | ---------- declaration in trait here
+...
+LL | fn foo<U: Debug>(&self, _: &U) { }
+ | ^ expected `impl Trait`, found generic parameter
+ |
+help: try removing the generic parameter and using `impl Trait` instead
+ |
+LL - fn foo<U: Debug>(&self, _: &U) { }
+LL + fn foo(&self, _: &impl Debug) { }
+ |
+
+error[E0643]: method `bar` has incompatible signature for trait
+ --> $DIR/impl-generic-mismatch.rs:17:23
+ |
+LL | fn bar<U: Debug>(&self, _: &U);
+ | - declaration in trait here
+...
+LL | fn bar(&self, _: &impl Debug) { }
+ | ^^^^^^^^^^ expected generic parameter, found `impl Trait`
+ |
+help: try changing the `impl Trait` argument to a generic parameter
+ |
+LL | fn bar<U: Debug>(&self, _: &U) { }
+ | ++++++++++ ~
+
+error[E0643]: method `baz` has incompatible signature for trait
+ --> $DIR/impl-generic-mismatch.rs:26:33
+ |
+LL | fn baz<U: Debug, T: Debug>(&self, _: &U, _: &T);
+ | - declaration in trait here
+...
+LL | fn baz<T: Debug>(&self, _: &impl Debug, _: &T) { }
+ | ^^^^^^^^^^ expected generic parameter, found `impl Trait`
+ |
+help: try changing the `impl Trait` argument to a generic parameter
+ |
+LL | fn baz<U: Debug, T: Debug>(&self, _: &T, _: &T) { }
+ | ~~~~~~~~~~~~~~~~~~~~ ~
+
+error[E0643]: method `hash` has incompatible signature for trait
+ --> $DIR/impl-generic-mismatch.rs:37:33
+ |
+LL | fn hash(&self, hasher: &mut impl Hasher) {}
+ | ^^^^^^^^^^^ expected generic parameter, found `impl Trait`
+ --> $SRC_DIR/core/src/hash/mod.rs:LL:COL
+ |
+ = note: declaration in trait here
+
+error: aborting due to 4 previous errors
+
+For more information about this error, try `rustc --explain E0643`.