summaryrefslogtreecommitdiffstats
path: root/src/test/ui/mismatched_types/overloaded-calls-bad.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
commit64d98f8ee037282c35007b64c2649055c56af1db (patch)
tree5492bcf97fce41ee1c0b1cc2add283f3e66cdab0 /src/test/ui/mismatched_types/overloaded-calls-bad.stderr
parentAdding debian version 1.67.1+dfsg1-1. (diff)
downloadrustc-64d98f8ee037282c35007b64c2649055c56af1db.tar.xz
rustc-64d98f8ee037282c35007b64c2649055c56af1db.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/mismatched_types/overloaded-calls-bad.stderr')
-rw-r--r--src/test/ui/mismatched_types/overloaded-calls-bad.stderr66
1 files changed, 0 insertions, 66 deletions
diff --git a/src/test/ui/mismatched_types/overloaded-calls-bad.stderr b/src/test/ui/mismatched_types/overloaded-calls-bad.stderr
deleted file mode 100644
index 3a895acbd..000000000
--- a/src/test/ui/mismatched_types/overloaded-calls-bad.stderr
+++ /dev/null
@@ -1,66 +0,0 @@
-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`.