1
- error[E0658]: using different calling convention than C or cdecl for varargs functions is unstable
1
+ error[E0658]: using calling conventions other than `C` or ` cdecl` for varargs functions is unstable
2
2
--> $DIR/feature-gate-extended_varargs_abi_support.rs:3:14
3
3
|
4
4
LL | fn efiapi(f: extern "efiapi" fn(usize, ...)) {
@@ -7,13 +7,13 @@ LL | fn efiapi(f: extern "efiapi" fn(usize, ...)) {
7
7
= note: see issue #100189 <https://github.com/rust-lang/rust/issues/100189> for more information
8
8
= help: add `#![feature(extended_varargs_abi_support)]` to the crate attributes to enable
9
9
10
- error[E0045]: C-variadic function must have a compatible calling convention, like C or cdecl
10
+ error[E0045]: C-variadic function must have a compatible calling convention, like `C` or ` cdecl`
11
11
--> $DIR/feature-gate-extended_varargs_abi_support.rs:3:14
12
12
|
13
13
LL | fn efiapi(f: extern "efiapi" fn(usize, ...)) {
14
14
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ C-variadic function must have a compatible calling convention
15
15
16
- error[E0658]: using different calling convention than C or cdecl for varargs functions is unstable
16
+ error[E0658]: using calling conventions other than `C` or ` cdecl` for varargs functions is unstable
17
17
--> $DIR/feature-gate-extended_varargs_abi_support.rs:8:12
18
18
|
19
19
LL | fn sysv(f: extern "sysv64" fn(usize, ...)) {
@@ -22,13 +22,13 @@ LL | fn sysv(f: extern "sysv64" fn(usize, ...)) {
22
22
= note: see issue #100189 <https://github.com/rust-lang/rust/issues/100189> for more information
23
23
= help: add `#![feature(extended_varargs_abi_support)]` to the crate attributes to enable
24
24
25
- error[E0045]: C-variadic function must have a compatible calling convention, like C or cdecl
25
+ error[E0045]: C-variadic function must have a compatible calling convention, like `C` or ` cdecl`
26
26
--> $DIR/feature-gate-extended_varargs_abi_support.rs:8:12
27
27
|
28
28
LL | fn sysv(f: extern "sysv64" fn(usize, ...)) {
29
29
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ C-variadic function must have a compatible calling convention
30
30
31
- error[E0658]: using different calling convention than C or cdecl for varargs functions is unstable
31
+ error[E0658]: using calling conventions other than `C` or ` cdecl` for varargs functions is unstable
32
32
--> $DIR/feature-gate-extended_varargs_abi_support.rs:13:11
33
33
|
34
34
LL | fn win(f: extern "win64" fn(usize, ...)) {
@@ -37,7 +37,7 @@ LL | fn win(f: extern "win64" fn(usize, ...)) {
37
37
= note: see issue #100189 <https://github.com/rust-lang/rust/issues/100189> for more information
38
38
= help: add `#![feature(extended_varargs_abi_support)]` to the crate attributes to enable
39
39
40
- error[E0045]: C-variadic function must have a compatible calling convention, like C or cdecl
40
+ error[E0045]: C-variadic function must have a compatible calling convention, like `C` or ` cdecl`
41
41
--> $DIR/feature-gate-extended_varargs_abi_support.rs:13:11
42
42
|
43
43
LL | fn win(f: extern "win64" fn(usize, ...)) {
0 commit comments