]> git.lizzy.rs Git - rust.git/blob - src/test/ui/mismatched_types/overloaded-calls-bad.stderr
Rollup merge of #80812 - rust-lang:relnotes-1.50.0, r=Mark-Simulacrum
[rust.git] / src / test / ui / mismatched_types / overloaded-calls-bad.stderr
1 error[E0308]: mismatched types
2   --> $DIR/overloaded-calls-bad.rs:28:17
3    |
4 LL |     let ans = s("what");
5    |                 ^^^^^^ expected `isize`, found `&str`
6
7 error[E0057]: this function takes 1 argument but 0 arguments were supplied
8   --> $DIR/overloaded-calls-bad.rs:29:15
9    |
10 LL |     let ans = s();
11    |               ^-- supplied 0 arguments
12    |               |
13    |               expected 1 argument
14    |
15 note: associated function defined here
16   --> $SRC_DIR/core/src/ops/function.rs:LL:COL
17    |
18 LL |     extern "rust-call" fn call_mut(&mut self, args: Args) -> Self::Output;
19    |                           ^^^^^^^^
20
21 error[E0057]: this function takes 1 argument but 2 arguments were supplied
22   --> $DIR/overloaded-calls-bad.rs:31:15
23    |
24 LL |     let ans = s("burma", "shave");
25    |               ^ -------  ------- supplied 2 arguments
26    |               |
27    |               expected 1 argument
28    |
29 note: associated function defined here
30   --> $SRC_DIR/core/src/ops/function.rs:LL:COL
31    |
32 LL |     extern "rust-call" fn call_mut(&mut self, args: Args) -> Self::Output;
33    |                           ^^^^^^^^
34
35 error: aborting due to 3 previous errors
36
37 Some errors have detailed explanations: E0057, E0308.
38 For more information about an error, try `rustc --explain E0057`.