@@ -28,6 +28,36 @@ LL | fn win(f: extern "win64" fn(usize, ...)) {
28
28
= help: add `#![feature(extended_varargs_abi_support)]` to the crate attributes to enable
29
29
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
30
30
31
- error: aborting due to 3 previous errors
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:17:5
33
+ |
34
+ LL | fn extern_efiapi(...);
35
+ | ^^^^^^^^^^^^^^^^^^^^^^
36
+ |
37
+ = note: see issue #100189 <https://github.com/rust-lang/rust/issues/100189> for more information
38
+ = help: add `#![feature(extended_varargs_abi_support)]` to the crate attributes to enable
39
+ = note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
40
+
41
+ error[E0658]: using calling conventions other than `C` or `cdecl` for varargs functions is unstable
42
+ --> $DIR/feature-gate-extended_varargs_abi_support.rs:22:5
43
+ |
44
+ LL | fn extern_sysv64(...);
45
+ | ^^^^^^^^^^^^^^^^^^^^^^
46
+ |
47
+ = note: see issue #100189 <https://github.com/rust-lang/rust/issues/100189> for more information
48
+ = help: add `#![feature(extended_varargs_abi_support)]` to the crate attributes to enable
49
+ = note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
50
+
51
+ error[E0658]: using calling conventions other than `C` or `cdecl` for varargs functions is unstable
52
+ --> $DIR/feature-gate-extended_varargs_abi_support.rs:27:5
53
+ |
54
+ LL | fn extern_win64(...);
55
+ | ^^^^^^^^^^^^^^^^^^^^^
56
+ |
57
+ = note: see issue #100189 <https://github.com/rust-lang/rust/issues/100189> for more information
58
+ = help: add `#![feature(extended_varargs_abi_support)]` to the crate attributes to enable
59
+ = note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
60
+
61
+ error: aborting due to 6 previous errors
32
62
33
63
For more information about this error, try `rustc --explain E0658`.
0 commit comments