summaryrefslogtreecommitdiffstats
path: root/tests/ui/mismatched_types/overloaded-calls-bad.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/mismatched_types/overloaded-calls-bad.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/mismatched_types/overloaded-calls-bad.stderr')
-rw-r--r--tests/ui/mismatched_types/overloaded-calls-bad.stderr66
1 files changed, 66 insertions, 0 deletions
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`.