]> git.lizzy.rs Git - rust.git/blob - src/test/ui/feature-gates/feature-gate-abi-x86-interrupt.stderr
parser will not give wrong help message for 'public'
[rust.git] / src / test / ui / feature-gates / feature-gate-abi-x86-interrupt.stderr
1 error[E0658]: x86-interrupt ABI is experimental and subject to change
2   --> $DIR/feature-gate-abi-x86-interrupt.rs:8:8
3    |
4 LL | extern "x86-interrupt" fn f7() {}
5    |        ^^^^^^^^^^^^^^^
6    |
7    = note: see issue #40180 <https://github.com/rust-lang/rust/issues/40180> for more information
8    = help: add `#![feature(abi_x86_interrupt)]` to the crate attributes to enable
9
10 error[E0658]: x86-interrupt ABI is experimental and subject to change
11   --> $DIR/feature-gate-abi-x86-interrupt.rs:10:12
12    |
13 LL |     extern "x86-interrupt" fn m7();
14    |            ^^^^^^^^^^^^^^^
15    |
16    = note: see issue #40180 <https://github.com/rust-lang/rust/issues/40180> for more information
17    = help: add `#![feature(abi_x86_interrupt)]` to the crate attributes to enable
18
19 error[E0658]: x86-interrupt ABI is experimental and subject to change
20   --> $DIR/feature-gate-abi-x86-interrupt.rs:11:12
21    |
22 LL |     extern "x86-interrupt" fn dm7() {}
23    |            ^^^^^^^^^^^^^^^
24    |
25    = note: see issue #40180 <https://github.com/rust-lang/rust/issues/40180> for more information
26    = help: add `#![feature(abi_x86_interrupt)]` to the crate attributes to enable
27
28 error[E0658]: x86-interrupt ABI is experimental and subject to change
29   --> $DIR/feature-gate-abi-x86-interrupt.rs:18:12
30    |
31 LL |     extern "x86-interrupt" fn m7() {}
32    |            ^^^^^^^^^^^^^^^
33    |
34    = note: see issue #40180 <https://github.com/rust-lang/rust/issues/40180> for more information
35    = help: add `#![feature(abi_x86_interrupt)]` to the crate attributes to enable
36
37 error[E0658]: x86-interrupt ABI is experimental and subject to change
38   --> $DIR/feature-gate-abi-x86-interrupt.rs:23:12
39    |
40 LL |     extern "x86-interrupt" fn im7() {}
41    |            ^^^^^^^^^^^^^^^
42    |
43    = note: see issue #40180 <https://github.com/rust-lang/rust/issues/40180> for more information
44    = help: add `#![feature(abi_x86_interrupt)]` to the crate attributes to enable
45
46 error[E0658]: x86-interrupt ABI is experimental and subject to change
47   --> $DIR/feature-gate-abi-x86-interrupt.rs:26:18
48    |
49 LL | type A7 = extern "x86-interrupt" fn();
50    |                  ^^^^^^^^^^^^^^^
51    |
52    = note: see issue #40180 <https://github.com/rust-lang/rust/issues/40180> for more information
53    = help: add `#![feature(abi_x86_interrupt)]` to the crate attributes to enable
54
55 error[E0658]: x86-interrupt ABI is experimental and subject to change
56   --> $DIR/feature-gate-abi-x86-interrupt.rs:28:8
57    |
58 LL | extern "x86-interrupt" {}
59    |        ^^^^^^^^^^^^^^^
60    |
61    = note: see issue #40180 <https://github.com/rust-lang/rust/issues/40180> for more information
62    = help: add `#![feature(abi_x86_interrupt)]` to the crate attributes to enable
63
64 error: aborting due to 7 previous errors
65
66 For more information about this error, try `rustc --explain E0658`.