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
22 --> $DIR/feature-gate-extended_varargs_abi_support.rs:3:14
33 |
44LL | fn efiapi(f: extern "efiapi" fn(usize, ...)) {
@@ -7,13 +7,13 @@ LL | fn efiapi(f: extern "efiapi" fn(usize, ...)) {
77 = note: see issue #100189 <https://github.com/rust-lang/rust/issues/100189> for more information
88 = help: add `#![feature(extended_varargs_abi_support)]` to the crate attributes to enable
99
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`
1111 --> $DIR/feature-gate-extended_varargs_abi_support.rs:3:14
1212 |
1313LL | fn efiapi(f: extern "efiapi" fn(usize, ...)) {
1414 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ C-variadic function must have a compatible calling convention
1515
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
1717 --> $DIR/feature-gate-extended_varargs_abi_support.rs:8:12
1818 |
1919LL | fn sysv(f: extern "sysv64" fn(usize, ...)) {
@@ -22,13 +22,13 @@ LL | fn sysv(f: extern "sysv64" fn(usize, ...)) {
2222 = note: see issue #100189 <https://github.com/rust-lang/rust/issues/100189> for more information
2323 = help: add `#![feature(extended_varargs_abi_support)]` to the crate attributes to enable
2424
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`
2626 --> $DIR/feature-gate-extended_varargs_abi_support.rs:8:12
2727 |
2828LL | fn sysv(f: extern "sysv64" fn(usize, ...)) {
2929 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ C-variadic function must have a compatible calling convention
3030
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
3232 --> $DIR/feature-gate-extended_varargs_abi_support.rs:13:11
3333 |
3434LL | fn win(f: extern "win64" fn(usize, ...)) {
@@ -37,7 +37,7 @@ LL | fn win(f: extern "win64" fn(usize, ...)) {
3737 = note: see issue #100189 <https://github.com/rust-lang/rust/issues/100189> for more information
3838 = help: add `#![feature(extended_varargs_abi_support)]` to the crate attributes to enable
3939
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`
4141 --> $DIR/feature-gate-extended_varargs_abi_support.rs:13:11
4242 |
4343LL | fn win(f: extern "win64" fn(usize, ...)) {
0 commit comments