summary refs log tree commit diff
path: root/src/test/ui/span/missing-unit-argument.stderr
blob: 7f1507bd6ff8ffeb5a9b08421deb98779d313491 (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
71
72
73
74
75
76
77
78
79
80
81
error[E0061]: this enum variant takes 1 argument but 0 arguments were supplied
  --> $DIR/missing-unit-argument.rs:11:33
   |
LL |     let _: Result<(), String> = Ok();
   |                                 ^^-- supplied 0 arguments
   |                                 |
   |                                 expected 1 argument

error[E0061]: this function takes 2 arguments but 0 arguments were supplied
  --> $DIR/missing-unit-argument.rs:12:5
   |
LL |     foo();
   |     ^^^-- supplied 0 arguments
   |     |
   |     expected 2 arguments
   |
note: function defined here
  --> $DIR/missing-unit-argument.rs:1:4
   |
LL | fn foo(():(), ():()) {}
   |    ^^^ -----  -----

error[E0061]: this function takes 2 arguments but 1 argument was supplied
  --> $DIR/missing-unit-argument.rs:13:5
   |
LL |     foo(());
   |     ^^^ -- supplied 1 argument
   |     |
   |     expected 2 arguments
   |
note: function defined here
  --> $DIR/missing-unit-argument.rs:1:4
   |
LL | fn foo(():(), ():()) {}
   |    ^^^ -----  -----

error[E0061]: this function takes 1 argument but 0 arguments were supplied
  --> $DIR/missing-unit-argument.rs:14:5
   |
LL |     bar();
   |     ^^^-- supplied 0 arguments
   |     |
   |     expected 1 argument
   |
note: function defined here
  --> $DIR/missing-unit-argument.rs:2:4
   |
LL | fn bar(():()) {}
   |    ^^^ -----

error[E0061]: this function takes 1 argument but 0 arguments were supplied
  --> $DIR/missing-unit-argument.rs:15:7
   |
LL |     S.baz();
   |       ^^^- supplied 0 arguments
   |       |
   |       expected 1 argument
   |
note: associated function defined here
  --> $DIR/missing-unit-argument.rs:6:8
   |
LL |     fn baz(self, (): ()) { }
   |        ^^^ ----  ------

error[E0061]: this function takes 1 argument but 0 arguments were supplied
  --> $DIR/missing-unit-argument.rs:16:7
   |
LL |     S.generic::<()>();
   |       ^^^^^^^------ supplied 0 arguments
   |       |
   |       expected 1 argument
   |
note: associated function defined here
  --> $DIR/missing-unit-argument.rs:7:8
   |
LL |     fn generic<T>(self, _: T) { }
   |        ^^^^^^^    ----  ----

error: aborting due to 6 previous errors

For more information about this error, try `rustc --explain E0061`.