summaryrefslogtreecommitdiffstats
path: root/src/test/ui/argument-suggestions/extra_arguments.rs
blob: 3706ac4e8e18d1b0fd61d8b4efc356f8f9cdc848 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
fn empty() {}
fn one_arg(_a: i32) {}
fn two_arg_same(_a: i32, _b: i32) {}
fn two_arg_diff(_a: i32, _b: &str) {}

fn main() {
  empty(""); //~ ERROR this function takes

  one_arg(1, 1); //~ ERROR this function takes
  one_arg(1, ""); //~ ERROR this function takes
  one_arg(1, "", 1.0); //~ ERROR this function takes

  two_arg_same(1, 1, 1); //~ ERROR this function takes
  two_arg_same(1, 1, 1.0); //~ ERROR this function takes

  two_arg_diff(1, 1, ""); //~ ERROR this function takes
  two_arg_diff(1, "", ""); //~ ERROR this function takes
  two_arg_diff(1, 1, "", ""); //~ ERROR this function takes
  two_arg_diff(1, "", 1, ""); //~ ERROR this function takes

  // Check with weird spacing and newlines
  two_arg_same(1, 1,     ""); //~ ERROR this function takes
  two_arg_diff(1, 1,     ""); //~ ERROR this function takes
  two_arg_same( //~ ERROR this function takes
    1,
    1,
    ""
  );

  two_arg_diff( //~ ERROR this function takes
    1,
    1,
    ""
  );
}