@@ -26,7 +26,7 @@ LL | extern "vectorcall" fn f3() {}
26
26
error[E0658]: rust-call ABI is subject to change
27
27
--> $DIR/feature-gate-abi.rs:18:8
28
28
|
29
- LL | extern "rust-call" fn f4() {}
29
+ LL | extern "rust-call" fn f4(_: () ) {}
30
30
| ^^^^^^^^^^^
31
31
|
32
32
= note: see issue #29625 <https://github.com/rust-lang/rust/issues/29625> for more information
@@ -113,7 +113,7 @@ LL | extern "vectorcall" fn m3();
113
113
error[E0658]: rust-call ABI is subject to change
114
114
--> $DIR/feature-gate-abi.rs:33:12
115
115
|
116
- LL | extern "rust-call" fn m4();
116
+ LL | extern "rust-call" fn m4(_: () );
117
117
| ^^^^^^^^^^^
118
118
|
119
119
= note: see issue #29625 <https://github.com/rust-lang/rust/issues/29625> for more information
@@ -183,7 +183,7 @@ LL | extern "vectorcall" fn dm3() {}
183
183
error[E0658]: rust-call ABI is subject to change
184
184
--> $DIR/feature-gate-abi.rs:42:12
185
185
|
186
- LL | extern "rust-call" fn dm4() {}
186
+ LL | extern "rust-call" fn dm4(_: () ) {}
187
187
| ^^^^^^^^^^^
188
188
|
189
189
= note: see issue #29625 <https://github.com/rust-lang/rust/issues/29625> for more information
@@ -270,7 +270,7 @@ LL | extern "vectorcall" fn m3() {}
270
270
error[E0658]: rust-call ABI is subject to change
271
271
--> $DIR/feature-gate-abi.rs:60:12
272
272
|
273
- LL | extern "rust-call" fn m4() {}
273
+ LL | extern "rust-call" fn m4(_: () ) {}
274
274
| ^^^^^^^^^^^
275
275
|
276
276
= note: see issue #29625 <https://github.com/rust-lang/rust/issues/29625> for more information
@@ -357,7 +357,7 @@ LL | extern "vectorcall" fn im3() {}
357
357
error[E0658]: rust-call ABI is subject to change
358
358
--> $DIR/feature-gate-abi.rs:76:12
359
359
|
360
- LL | extern "rust-call" fn im4() {}
360
+ LL | extern "rust-call" fn im4(_: () ) {}
361
361
| ^^^^^^^^^^^
362
362
|
363
363
= note: see issue #29625 <https://github.com/rust-lang/rust/issues/29625> for more information
@@ -444,7 +444,7 @@ LL | type A3 = extern "vectorcall" fn();
444
444
error[E0658]: rust-call ABI is subject to change
445
445
--> $DIR/feature-gate-abi.rs:89:18
446
446
|
447
- LL | type A4 = extern "rust-call" fn();
447
+ LL | type A4 = extern "rust-call" fn(_: () );
448
448
| ^^^^^^^^^^^
449
449
|
450
450
= note: see issue #29625 <https://github.com/rust-lang/rust/issues/29625> for more information
0 commit comments