From 218caa410aa38c29984be31a5229b9fa717560ee Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:19:13 +0200 Subject: Merging upstream version 1.68.2+dfsg1. Signed-off-by: Daniel Baumann --- .../mismatched_types/overloaded-calls-bad.stderr | 66 ++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 tests/ui/mismatched_types/overloaded-calls-bad.stderr (limited to 'tests/ui/mismatched_types/overloaded-calls-bad.stderr') diff --git a/tests/ui/mismatched_types/overloaded-calls-bad.stderr b/tests/ui/mismatched_types/overloaded-calls-bad.stderr new file mode 100644 index 000000000..3a895acbd --- /dev/null +++ b/tests/ui/mismatched_types/overloaded-calls-bad.stderr @@ -0,0 +1,66 @@ +error[E0308]: mismatched types + --> $DIR/overloaded-calls-bad.rs:33:17 + | +LL | let ans = s("what"); + | - ^^^^^^ expected `isize`, found `&str` + | | + | arguments to this function are incorrect + | +note: implementation defined here + --> $DIR/overloaded-calls-bad.rs:10:1 + | +LL | impl FnMut<(isize,)> for S { + | ^^^^^^^^^^^^^^^^^^^^^^^^^^ + +error[E0057]: this function takes 1 argument but 0 arguments were supplied + --> $DIR/overloaded-calls-bad.rs:35:15 + | +LL | let ans = s(); + | ^-- an argument of type `isize` is missing + | +note: implementation defined here + --> $DIR/overloaded-calls-bad.rs:10:1 + | +LL | impl FnMut<(isize,)> for S { + | ^^^^^^^^^^^^^^^^^^^^^^^^^^ +help: provide the argument + | +LL | let ans = s(/* isize */); + | ~~~~~~~~~~~~~ + +error[E0057]: this function takes 1 argument but 2 arguments were supplied + --> $DIR/overloaded-calls-bad.rs:37:15 + | +LL | let ans = s("burma", "shave"); + | ^ ------- ------- argument of type `&'static str` unexpected + | | + | expected `isize`, found `&str` + | +note: implementation defined here + --> $DIR/overloaded-calls-bad.rs:10:1 + | +LL | impl FnMut<(isize,)> for S { + | ^^^^^^^^^^^^^^^^^^^^^^^^^^ +help: remove the extra argument + | +LL | let ans = s(/* isize */); + | ~~~~~~~~~~~~~ + +error[E0308]: mismatched types + --> $DIR/overloaded-calls-bad.rs:40:7 + | +LL | F(""); + | - ^^ expected `i32`, found `&str` + | | + | arguments to this struct are incorrect + | +note: implementation defined here + --> $DIR/overloaded-calls-bad.rs:25:1 + | +LL | impl FnOnce<(i32,)> for F { + | ^^^^^^^^^^^^^^^^^^^^^^^^^ + +error: aborting due to 4 previous errors + +Some errors have detailed explanations: E0057, E0308. +For more information about an error, try `rustc --explain E0057`. -- cgit v1.2.3