blob: be514fdd81ced513386ab1c2d3790c303d346da9 (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
error[E0061]: this function takes 1 parameter but 0 parameters were supplied
--> $DIR/missing-unit-argument.rs:21:33
|
LL | let _: Result<(), String> = Ok(); //~ ERROR this function takes
| ^^^^
help: expected the unit value `()`; create it with empty parentheses
|
LL | let _: Result<(), String> = Ok(()); //~ ERROR this function takes
| ^^
error[E0061]: this function takes 2 parameters but 0 parameters were supplied
--> $DIR/missing-unit-argument.rs:22:5
|
LL | fn foo(():(), ():()) {}
| -------------------- defined here
...
LL | foo(); //~ ERROR this function takes
| ^^^^^ expected 2 parameters
error[E0061]: this function takes 2 parameters but 1 parameter was supplied
--> $DIR/missing-unit-argument.rs:23:5
|
LL | fn foo(():(), ():()) {}
| -------------------- defined here
...
LL | foo(()); //~ ERROR this function takes
| ^^^^^^^ expected 2 parameters
error[E0061]: this function takes 1 parameter but 0 parameters were supplied
--> $DIR/missing-unit-argument.rs:24:5
|
LL | fn bar(():()) {}
| ------------- defined here
...
LL | bar(); //~ ERROR this function takes
| ^^^^^
help: expected the unit value `()`; create it with empty parentheses
|
LL | bar(()); //~ ERROR this function takes
| ^^
error[E0061]: this function takes 1 parameter but 0 parameters were supplied
--> $DIR/missing-unit-argument.rs:25:7
|
LL | fn baz(self, (): ()) { }
| -------------------- defined here
...
LL | S.baz(); //~ ERROR this function takes
| ^^^
help: expected the unit value `()`; create it with empty parentheses
|
LL | S.baz(()); //~ ERROR this function takes
| ^^
error[E0061]: this function takes 1 parameter but 0 parameters were supplied
--> $DIR/missing-unit-argument.rs:26:7
|
LL | fn generic<T>(self, _: T) { }
| ------------------------- defined here
...
LL | S.generic::<()>(); //~ ERROR this function takes
| ^^^^^^^
help: expected the unit value `()`; create it with empty parentheses
|
LL | S.generic::<()>(()); //~ ERROR this function takes
| ^^
error: aborting due to 6 previous errors
For more information about this error, try `rustc --explain E0061`.
|