summaryrefslogtreecommitdiffstats
path: root/src/test/ui/mismatched_types/overloaded-calls-bad.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/mismatched_types/overloaded-calls-bad.stderr')
-rw-r--r--src/test/ui/mismatched_types/overloaded-calls-bad.stderr52
1 files changed, 52 insertions, 0 deletions
diff --git a/src/test/ui/mismatched_types/overloaded-calls-bad.stderr b/src/test/ui/mismatched_types/overloaded-calls-bad.stderr
new file mode 100644
index 000000000..475ea9dfa
--- /dev/null
+++ b/src/test/ui/mismatched_types/overloaded-calls-bad.stderr
@@ -0,0 +1,52 @@
+error[E0308]: mismatched types
+ --> $DIR/overloaded-calls-bad.rs:28: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:29: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:31: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: aborting due to 3 previous errors
+
+Some errors have detailed explanations: E0057, E0308.
+For more information about an error, try `rustc --explain E0057`.