]> git.lizzy.rs Git - rust.git/blob - src/test/ui/feature-gates/feature-gate-vectorcall.stderr
Rollup merge of #94449 - GuillaumeGomez:explanation-e0726, r=Urgau
[rust.git] / src / test / ui / feature-gates / feature-gate-vectorcall.stderr
1 error[E0658]: vectorcall is experimental and subject to change
2   --> $DIR/feature-gate-vectorcall.rs:12:8
3    |
4 LL | extern "vectorcall" fn f() {}
5    |        ^^^^^^^^^^^^
6    |
7    = help: add `#![feature(abi_vectorcall)]` to the crate attributes to enable
8
9 error[E0658]: vectorcall is experimental and subject to change
10   --> $DIR/feature-gate-vectorcall.rs:15:12
11    |
12 LL |     extern "vectorcall" fn m();
13    |            ^^^^^^^^^^^^
14    |
15    = help: add `#![feature(abi_vectorcall)]` to the crate attributes to enable
16
17 error[E0658]: vectorcall is experimental and subject to change
18   --> $DIR/feature-gate-vectorcall.rs:17:12
19    |
20 LL |     extern "vectorcall" fn dm() {}
21    |            ^^^^^^^^^^^^
22    |
23    = help: add `#![feature(abi_vectorcall)]` to the crate attributes to enable
24
25 error[E0658]: vectorcall is experimental and subject to change
26   --> $DIR/feature-gate-vectorcall.rs:22:12
27    |
28 LL |     extern "vectorcall" fn m() {}
29    |            ^^^^^^^^^^^^
30    |
31    = help: add `#![feature(abi_vectorcall)]` to the crate attributes to enable
32
33 error[E0658]: vectorcall is experimental and subject to change
34   --> $DIR/feature-gate-vectorcall.rs:26:12
35    |
36 LL |     extern "vectorcall" fn im() {}
37    |            ^^^^^^^^^^^^
38    |
39    = help: add `#![feature(abi_vectorcall)]` to the crate attributes to enable
40
41 error[E0658]: vectorcall is experimental and subject to change
42   --> $DIR/feature-gate-vectorcall.rs:29:18
43    |
44 LL | type TA = extern "vectorcall" fn();
45    |                  ^^^^^^^^^^^^
46    |
47    = help: add `#![feature(abi_vectorcall)]` to the crate attributes to enable
48
49 error[E0658]: vectorcall is experimental and subject to change
50   --> $DIR/feature-gate-vectorcall.rs:31:8
51    |
52 LL | extern "vectorcall" {}
53    |        ^^^^^^^^^^^^
54    |
55    = help: add `#![feature(abi_vectorcall)]` to the crate attributes to enable
56
57 error: aborting due to 7 previous errors
58
59 For more information about this error, try `rustc --explain E0658`.