]> git.lizzy.rs Git - rust.git/blob - src/test/ui/feature-gates/feature-gate-abi_amdgpu_kernel.stderr
parser will not give wrong help message for 'public'
[rust.git] / src / test / ui / feature-gates / feature-gate-abi_amdgpu_kernel.stderr
1 error[E0658]: amdgpu-kernel ABI is experimental and subject to change
2   --> $DIR/feature-gate-abi_amdgpu_kernel.rs:7:8
3    |
4 LL | extern "amdgpu-kernel" fn fu() {}
5    |        ^^^^^^^^^^^^^^^
6    |
7    = note: see issue #51575 <https://github.com/rust-lang/rust/issues/51575> for more information
8    = help: add `#![feature(abi_amdgpu_kernel)]` to the crate attributes to enable
9
10 error[E0658]: amdgpu-kernel ABI is experimental and subject to change
11   --> $DIR/feature-gate-abi_amdgpu_kernel.rs:11:12
12    |
13 LL |     extern "amdgpu-kernel" fn mu();
14    |            ^^^^^^^^^^^^^^^
15    |
16    = note: see issue #51575 <https://github.com/rust-lang/rust/issues/51575> for more information
17    = help: add `#![feature(abi_amdgpu_kernel)]` to the crate attributes to enable
18
19 error[E0658]: amdgpu-kernel ABI is experimental and subject to change
20   --> $DIR/feature-gate-abi_amdgpu_kernel.rs:12:12
21    |
22 LL |     extern "amdgpu-kernel" fn dmu() {}
23    |            ^^^^^^^^^^^^^^^
24    |
25    = note: see issue #51575 <https://github.com/rust-lang/rust/issues/51575> for more information
26    = help: add `#![feature(abi_amdgpu_kernel)]` to the crate attributes to enable
27
28 error[E0658]: amdgpu-kernel ABI is experimental and subject to change
29   --> $DIR/feature-gate-abi_amdgpu_kernel.rs:18:12
30    |
31 LL |     extern "amdgpu-kernel" fn mu() {}
32    |            ^^^^^^^^^^^^^^^
33    |
34    = note: see issue #51575 <https://github.com/rust-lang/rust/issues/51575> for more information
35    = help: add `#![feature(abi_amdgpu_kernel)]` to the crate attributes to enable
36
37 error[E0658]: amdgpu-kernel ABI is experimental and subject to change
38   --> $DIR/feature-gate-abi_amdgpu_kernel.rs:23:12
39    |
40 LL |     extern "amdgpu-kernel" fn imu() {}
41    |            ^^^^^^^^^^^^^^^
42    |
43    = note: see issue #51575 <https://github.com/rust-lang/rust/issues/51575> for more information
44    = help: add `#![feature(abi_amdgpu_kernel)]` to the crate attributes to enable
45
46 error[E0658]: amdgpu-kernel ABI is experimental and subject to change
47   --> $DIR/feature-gate-abi_amdgpu_kernel.rs:27:19
48    |
49 LL | type TAU = extern "amdgpu-kernel" fn();
50    |                   ^^^^^^^^^^^^^^^
51    |
52    = note: see issue #51575 <https://github.com/rust-lang/rust/issues/51575> for more information
53    = help: add `#![feature(abi_amdgpu_kernel)]` to the crate attributes to enable
54
55 error[E0658]: amdgpu-kernel ABI is experimental and subject to change
56   --> $DIR/feature-gate-abi_amdgpu_kernel.rs:29:8
57    |
58 LL | extern "amdgpu-kernel" {}
59    |        ^^^^^^^^^^^^^^^
60    |
61    = note: see issue #51575 <https://github.com/rust-lang/rust/issues/51575> for more information
62    = help: add `#![feature(abi_amdgpu_kernel)]` to the crate attributes to enable
63
64 error[E0570]: `"amdgpu-kernel"` is not a supported ABI for the current target
65   --> $DIR/feature-gate-abi_amdgpu_kernel.rs:29:1
66    |
67 LL | extern "amdgpu-kernel" {}
68    | ^^^^^^^^^^^^^^^^^^^^^^^^^
69
70 error[E0570]: `"amdgpu-kernel"` is not a supported ABI for the current target
71   --> $DIR/feature-gate-abi_amdgpu_kernel.rs:7:1
72    |
73 LL | extern "amdgpu-kernel" fn fu() {}
74    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
75
76 error[E0570]: `"amdgpu-kernel"` is not a supported ABI for the current target
77   --> $DIR/feature-gate-abi_amdgpu_kernel.rs:12:5
78    |
79 LL |     extern "amdgpu-kernel" fn dmu() {}
80    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
81
82 error[E0570]: `"amdgpu-kernel"` is not a supported ABI for the current target
83   --> $DIR/feature-gate-abi_amdgpu_kernel.rs:18:5
84    |
85 LL |     extern "amdgpu-kernel" fn mu() {}
86    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
87
88 error[E0570]: `"amdgpu-kernel"` is not a supported ABI for the current target
89   --> $DIR/feature-gate-abi_amdgpu_kernel.rs:23:5
90    |
91 LL |     extern "amdgpu-kernel" fn imu() {}
92    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
93
94 error: aborting due to 12 previous errors
95
96 Some errors have detailed explanations: E0570, E0658.
97 For more information about an error, try `rustc --explain E0570`.