summaryrefslogtreecommitdiffstats
path: root/tests/ui/const-generics/defaults/mismatched_ty_const_in_trait_impl.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/const-generics/defaults/mismatched_ty_const_in_trait_impl.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/const-generics/defaults/mismatched_ty_const_in_trait_impl.stderr')
-rw-r--r--tests/ui/const-generics/defaults/mismatched_ty_const_in_trait_impl.stderr68
1 files changed, 68 insertions, 0 deletions
diff --git a/tests/ui/const-generics/defaults/mismatched_ty_const_in_trait_impl.stderr b/tests/ui/const-generics/defaults/mismatched_ty_const_in_trait_impl.stderr
new file mode 100644
index 000000000..3455f2c8e
--- /dev/null
+++ b/tests/ui/const-generics/defaults/mismatched_ty_const_in_trait_impl.stderr
@@ -0,0 +1,68 @@
+error[E0053]: method `foo` has an incompatible generic parameter for trait `Trait`
+ --> $DIR/mismatched_ty_const_in_trait_impl.rs:5:12
+ |
+LL | trait Trait {
+ | -----
+LL | fn foo<U>() {}
+ | - expected type parameter
+LL | }
+LL | impl Trait for () {
+ | -----------------
+LL | fn foo<const M: u64>() {}
+ | ^^^^^^^^^^^^ found const parameter of type `u64`
+
+error[E0053]: method `bar` has an incompatible generic parameter for trait `Other`
+ --> $DIR/mismatched_ty_const_in_trait_impl.rs:13:12
+ |
+LL | trait Other {
+ | -----
+LL | fn bar<const M: u8>() {}
+ | ----------- expected const parameter of type `u8`
+LL | }
+LL | impl Other for () {
+ | -----------------
+LL | fn bar<T>() {}
+ | ^ found type parameter
+
+error[E0053]: method `baz` has an incompatible generic parameter for trait `Uwu`
+ --> $DIR/mismatched_ty_const_in_trait_impl.rs:21:12
+ |
+LL | trait Uwu {
+ | ---
+LL | fn baz<const N: u32>() {}
+ | ------------ expected const parameter of type `u32`
+LL | }
+LL | impl Uwu for () {
+ | ---------------
+LL | fn baz<const N: i32>() {}
+ | ^^^^^^^^^^^^ found const parameter of type `i32`
+
+error[E0053]: method `bbbb` has an incompatible generic parameter for trait `Aaaaaa`
+ --> $DIR/mismatched_ty_const_in_trait_impl.rs:29:13
+ |
+LL | trait Aaaaaa {
+ | ------
+LL | fn bbbb<const N: u32, T>() {}
+ | ------------ expected const parameter of type `u32`
+LL | }
+LL | impl Aaaaaa for () {
+ | ------------------
+LL | fn bbbb<T, const N: u32>() {}
+ | ^ found type parameter
+
+error[E0053]: method `abcd` has an incompatible generic parameter for trait `Names`
+ --> $DIR/mismatched_ty_const_in_trait_impl.rs:37:13
+ |
+LL | trait Names {
+ | -----
+LL | fn abcd<T, const N: u32>() {}
+ | - expected type parameter
+LL | }
+LL | impl Names for () {
+ | -----------------
+LL | fn abcd<const N: u32, T>() {}
+ | ^^^^^^^^^^^^ found const parameter of type `u32`
+
+error: aborting due to 5 previous errors
+
+For more information about this error, try `rustc --explain E0053`.