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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
error: expected one of `:` or `@`, found `<`
--> $DIR/issue-34264.rs:11:14
|
LL | fn foo(Option<i32>, String) {} //~ ERROR expected one of
| ^ expected one of `:` or `@` here
error: expected one of `:` or `@`, found `)`
--> $DIR/issue-34264.rs:11:27
|
LL | fn foo(Option<i32>, String) {} //~ ERROR expected one of
| ^ expected one of `:` or `@` here
error: expected one of `:` or `@`, found `,`
--> $DIR/issue-34264.rs:13:9
|
LL | fn bar(x, y: usize) {} //~ ERROR expected one of
| ^ expected one of `:` or `@` here
error[E0061]: this function takes 2 parameters but 3 parameters were supplied
--> $DIR/issue-34264.rs:17:5
|
LL | fn foo(Option<i32>, String) {} //~ ERROR expected one of
| --------------------------- defined here
...
LL | foo(Some(42), 2, ""); //~ ERROR this function takes
| ^^^^^^^^^^^^^^^^^^^^ expected 2 parameters
error[E0308]: mismatched types
--> $DIR/issue-34264.rs:18:13
|
LL | bar("", ""); //~ ERROR mismatched types
| ^^ expected usize, found reference
|
= note: expected type `usize`
found type `&'static str`
error[E0061]: this function takes 2 parameters but 3 parameters were supplied
--> $DIR/issue-34264.rs:20:5
|
LL | fn bar(x, y: usize) {} //~ ERROR expected one of
| ------------------- defined here
...
LL | bar(1, 2, 3); //~ ERROR this function takes
| ^^^^^^^^^^^^ expected 2 parameters
error: aborting due to 6 previous errors
Some errors occurred: E0061, E0308.
For more information about an error, try `rustc --explain E0061`.
|