1
1
error[E0658]: using calling conventions other than `C` or `cdecl` for varargs functions is unstable
2
- --> $DIR/feature-gate-extended_varargs_abi_support.rs:3 :14
2
+ --> $DIR/feature-gate-extended_varargs_abi_support.rs:1 :14
3
3
|
4
4
LL | fn efiapi(f: extern "efiapi" fn(usize, ...)) {
5
5
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -8,13 +8,13 @@ LL | fn efiapi(f: extern "efiapi" fn(usize, ...)) {
8
8
= help: add `#![feature(extended_varargs_abi_support)]` to the crate attributes to enable
9
9
10
10
error[E0045]: C-variadic function must have a compatible calling convention, like `C` or `cdecl`
11
- --> $DIR/feature-gate-extended_varargs_abi_support.rs:3 :14
11
+ --> $DIR/feature-gate-extended_varargs_abi_support.rs:1 :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
16
error[E0658]: using calling conventions other than `C` or `cdecl` for varargs functions is unstable
17
- --> $DIR/feature-gate-extended_varargs_abi_support.rs:8 :12
17
+ --> $DIR/feature-gate-extended_varargs_abi_support.rs:6 :12
18
18
|
19
19
LL | fn sysv(f: extern "sysv64" fn(usize, ...)) {
20
20
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -23,13 +23,13 @@ LL | fn sysv(f: extern "sysv64" fn(usize, ...)) {
23
23
= help: add `#![feature(extended_varargs_abi_support)]` to the crate attributes to enable
24
24
25
25
error[E0045]: C-variadic function must have a compatible calling convention, like `C` or `cdecl`
26
- --> $DIR/feature-gate-extended_varargs_abi_support.rs:8 :12
26
+ --> $DIR/feature-gate-extended_varargs_abi_support.rs:6 :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
31
error[E0658]: using calling conventions other than `C` or `cdecl` for varargs functions is unstable
32
- --> $DIR/feature-gate-extended_varargs_abi_support.rs:13 :11
32
+ --> $DIR/feature-gate-extended_varargs_abi_support.rs:11 :11
33
33
|
34
34
LL | fn win(f: extern "win64" fn(usize, ...)) {
35
35
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -38,7 +38,7 @@ LL | fn win(f: extern "win64" fn(usize, ...)) {
38
38
= help: add `#![feature(extended_varargs_abi_support)]` to the crate attributes to enable
39
39
40
40
error[E0045]: C-variadic function must have a compatible calling convention, like `C` or `cdecl`
41
- --> $DIR/feature-gate-extended_varargs_abi_support.rs:13 :11
41
+ --> $DIR/feature-gate-extended_varargs_abi_support.rs:11 :11
42
42
|
43
43
LL | fn win(f: extern "win64" fn(usize, ...)) {
44
44
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ C-variadic function must have a compatible calling convention
0 commit comments