@@ -12,7 +12,7 @@ LL | fn empty() {}
1212help: remove the extra argument
1313 |
1414LL | empty();
15- | ~~~~~ ~~
15+ | ~~
1616
1717error[E0061]: this function takes 1 argument but 2 arguments were supplied
1818 --> $DIR/extra_arguments.rs:9:3
@@ -28,7 +28,7 @@ LL | fn one_arg(_a: i32) {}
2828help: remove the extra argument
2929 |
3030LL | one_arg(1);
31- | ~~~~~~~ ~~~
31+ | ~~~
3232
3333error[E0061]: this function takes 1 argument but 2 arguments were supplied
3434 --> $DIR/extra_arguments.rs:10:3
@@ -44,7 +44,7 @@ LL | fn one_arg(_a: i32) {}
4444help: remove the extra argument
4545 |
4646LL | one_arg(1);
47- | ~~~~~~~ ~~~
47+ | ~~~
4848
4949error[E0061]: this function takes 1 argument but 3 arguments were supplied
5050 --> $DIR/extra_arguments.rs:11:3
@@ -62,7 +62,7 @@ LL | fn one_arg(_a: i32) {}
6262help: remove the extra arguments
6363 |
6464LL | one_arg(1);
65- | ~~~~~~~ ~~~
65+ | ~~~
6666
6767error[E0061]: this function takes 2 arguments but 3 arguments were supplied
6868 --> $DIR/extra_arguments.rs:13:3
@@ -78,7 +78,7 @@ LL | fn two_arg_same(_a: i32, _b: i32) {}
7878help: remove the extra argument
7979 |
8080LL | two_arg_same(1, 1);
81- | ~~~~~~~~~~~~ ~~~~~~
81+ | ~~~~~~
8282
8383error[E0061]: this function takes 2 arguments but 3 arguments were supplied
8484 --> $DIR/extra_arguments.rs:14:3
@@ -94,7 +94,7 @@ LL | fn two_arg_same(_a: i32, _b: i32) {}
9494help: remove the extra argument
9595 |
9696LL | two_arg_same(1, 1);
97- | ~~~~~~~~~~~~ ~~~~~~
97+ | ~~~~~~
9898
9999error[E0061]: this function takes 2 arguments but 3 arguments were supplied
100100 --> $DIR/extra_arguments.rs:16:3
@@ -110,7 +110,7 @@ LL | fn two_arg_diff(_a: i32, _b: &str) {}
110110help: remove the extra argument
111111 |
112112LL | two_arg_diff(1, "");
113- | ~~~~~~~~~~~~ ~~~~~~~
113+ | ~~~~~~~
114114
115115error[E0061]: this function takes 2 arguments but 3 arguments were supplied
116116 --> $DIR/extra_arguments.rs:17:3
@@ -126,7 +126,7 @@ LL | fn two_arg_diff(_a: i32, _b: &str) {}
126126help: remove the extra argument
127127 |
128128LL | two_arg_diff(1, "");
129- | ~~~~~~~~~~~~ ~~~~~~~
129+ | ~~~~~~~
130130
131131error[E0061]: this function takes 2 arguments but 4 arguments were supplied
132132 --> $DIR/extra_arguments.rs:18:3
@@ -144,7 +144,7 @@ LL | fn two_arg_diff(_a: i32, _b: &str) {}
144144help: remove the extra arguments
145145 |
146146LL | two_arg_diff(1, "");
147- | ~~~~~~~~~~~~ ~~~~~~~
147+ | ~~~~~~~
148148
149149error[E0061]: this function takes 2 arguments but 4 arguments were supplied
150150 --> $DIR/extra_arguments.rs:19:3
@@ -162,7 +162,7 @@ LL | fn two_arg_diff(_a: i32, _b: &str) {}
162162help: remove the extra arguments
163163 |
164164LL | two_arg_diff(1, "");
165- | ~~~~~~~~~~~~ ~~~~~~~
165+ | ~~~~~~~
166166
167167error[E0061]: this function takes 2 arguments but 3 arguments were supplied
168168 --> $DIR/extra_arguments.rs:22:3
@@ -178,7 +178,7 @@ LL | fn two_arg_same(_a: i32, _b: i32) {}
178178help: remove the extra argument
179179 |
180180LL | two_arg_same(1, 1);
181- | ~~~~~~~~~~~~ ~~~~~~
181+ | ~~~~~~
182182
183183error[E0061]: this function takes 2 arguments but 3 arguments were supplied
184184 --> $DIR/extra_arguments.rs:23:3
@@ -194,7 +194,7 @@ LL | fn two_arg_diff(_a: i32, _b: &str) {}
194194help: remove the extra argument
195195 |
196196LL | two_arg_diff(1, "");
197- | ~~~~~~~~~~~~ ~~~~~~~
197+ | ~~~~~~~
198198
199199error[E0061]: this function takes 2 arguments but 3 arguments were supplied
200200 --> $DIR/extra_arguments.rs:24:3
@@ -213,7 +213,7 @@ LL | fn two_arg_same(_a: i32, _b: i32) {}
213213help: remove the extra argument
214214 |
215215LL | two_arg_same(1, 1);
216- | ~~~~~~~~~~~~ ~~~~~~
216+ | ~~~~~~
217217
218218error[E0061]: this function takes 2 arguments but 3 arguments were supplied
219219 --> $DIR/extra_arguments.rs:30:3
@@ -232,7 +232,7 @@ LL | fn two_arg_diff(_a: i32, _b: &str) {}
232232help: remove the extra argument
233233 |
234234LL | two_arg_diff(1, "");
235- | ~~~~~~~~~~~~ ~~~~~~~
235+ | ~~~~~~~
236236
237237error: aborting due to 14 previous errors
238238
0 commit comments