]> git.lizzy.rs Git - rust.git/blob - src/test/ui/unwind-abis/feature-gate-thiscall-unwind.stderr
Auto merge of #85363 - EFanZh:gdb-pretty-print-slices, r=michaelwoerister
[rust.git] / src / test / ui / unwind-abis / feature-gate-thiscall-unwind.stderr
1 error[E0658]: thiscall-unwind ABI is experimental and subject to change
2   --> $DIR/feature-gate-thiscall-unwind.rs:13:8
3    |
4 LL | extern "thiscall-unwind" fn fu() {}
5    |        ^^^^^^^^^^^^^^^^^
6    |
7    = note: see issue #74990 <https://github.com/rust-lang/rust/issues/74990> for more information
8    = help: add `#![feature(c_unwind)]` to the crate attributes to enable
9
10 error[E0658]: thiscall is experimental and subject to change
11   --> $DIR/feature-gate-thiscall-unwind.rs:14:8
12    |
13 LL | extern "thiscall" fn f() {}
14    |        ^^^^^^^^^^
15    |
16    = help: add `#![feature(abi_thiscall)]` to the crate attributes to enable
17
18 error[E0658]: thiscall is experimental and subject to change
19   --> $DIR/feature-gate-thiscall-unwind.rs:17:12
20    |
21 LL |     extern "thiscall" fn m();
22    |            ^^^^^^^^^^
23    |
24    = help: add `#![feature(abi_thiscall)]` to the crate attributes to enable
25
26 error[E0658]: thiscall-unwind ABI is experimental and subject to change
27   --> $DIR/feature-gate-thiscall-unwind.rs:18:12
28    |
29 LL |     extern "thiscall-unwind" fn mu();
30    |            ^^^^^^^^^^^^^^^^^
31    |
32    = note: see issue #74990 <https://github.com/rust-lang/rust/issues/74990> for more information
33    = help: add `#![feature(c_unwind)]` to the crate attributes to enable
34
35 error[E0658]: thiscall is experimental and subject to change
36   --> $DIR/feature-gate-thiscall-unwind.rs:20:12
37    |
38 LL |     extern "thiscall" fn dm() {}
39    |            ^^^^^^^^^^
40    |
41    = help: add `#![feature(abi_thiscall)]` to the crate attributes to enable
42
43 error[E0658]: thiscall-unwind ABI is experimental and subject to change
44   --> $DIR/feature-gate-thiscall-unwind.rs:21:12
45    |
46 LL |     extern "thiscall-unwind" fn dmu() {}
47    |            ^^^^^^^^^^^^^^^^^
48    |
49    = note: see issue #74990 <https://github.com/rust-lang/rust/issues/74990> for more information
50    = help: add `#![feature(c_unwind)]` to the crate attributes to enable
51
52 error[E0658]: thiscall is experimental and subject to change
53   --> $DIR/feature-gate-thiscall-unwind.rs:26:12
54    |
55 LL |     extern "thiscall" fn m() {}
56    |            ^^^^^^^^^^
57    |
58    = help: add `#![feature(abi_thiscall)]` to the crate attributes to enable
59
60 error[E0658]: thiscall-unwind ABI is experimental and subject to change
61   --> $DIR/feature-gate-thiscall-unwind.rs:27:12
62    |
63 LL |     extern "thiscall-unwind" fn mu() {}
64    |            ^^^^^^^^^^^^^^^^^
65    |
66    = note: see issue #74990 <https://github.com/rust-lang/rust/issues/74990> for more information
67    = help: add `#![feature(c_unwind)]` to the crate attributes to enable
68
69 error[E0658]: thiscall is experimental and subject to change
70   --> $DIR/feature-gate-thiscall-unwind.rs:31:12
71    |
72 LL |     extern "thiscall" fn im() {}
73    |            ^^^^^^^^^^
74    |
75    = help: add `#![feature(abi_thiscall)]` to the crate attributes to enable
76
77 error[E0658]: thiscall-unwind ABI is experimental and subject to change
78   --> $DIR/feature-gate-thiscall-unwind.rs:32:12
79    |
80 LL |     extern "thiscall-unwind" fn imu() {}
81    |            ^^^^^^^^^^^^^^^^^
82    |
83    = note: see issue #74990 <https://github.com/rust-lang/rust/issues/74990> for more information
84    = help: add `#![feature(c_unwind)]` to the crate attributes to enable
85
86 error[E0658]: thiscall is experimental and subject to change
87   --> $DIR/feature-gate-thiscall-unwind.rs:35:18
88    |
89 LL | type TA = extern "thiscall" fn();
90    |                  ^^^^^^^^^^
91    |
92    = help: add `#![feature(abi_thiscall)]` to the crate attributes to enable
93
94 error[E0658]: thiscall-unwind ABI is experimental and subject to change
95   --> $DIR/feature-gate-thiscall-unwind.rs:36:19
96    |
97 LL | type TAU = extern "thiscall-unwind" fn();
98    |                   ^^^^^^^^^^^^^^^^^
99    |
100    = note: see issue #74990 <https://github.com/rust-lang/rust/issues/74990> for more information
101    = help: add `#![feature(c_unwind)]` to the crate attributes to enable
102
103 error[E0658]: thiscall is experimental and subject to change
104   --> $DIR/feature-gate-thiscall-unwind.rs:38:8
105    |
106 LL | extern "thiscall" {}
107    |        ^^^^^^^^^^
108    |
109    = help: add `#![feature(abi_thiscall)]` to the crate attributes to enable
110
111 error[E0658]: thiscall-unwind ABI is experimental and subject to change
112   --> $DIR/feature-gate-thiscall-unwind.rs:39:8
113    |
114 LL | extern "thiscall-unwind" {}
115    |        ^^^^^^^^^^^^^^^^^
116    |
117    = note: see issue #74990 <https://github.com/rust-lang/rust/issues/74990> for more information
118    = help: add `#![feature(c_unwind)]` to the crate attributes to enable
119
120 error: aborting due to 14 previous errors
121
122 For more information about this error, try `rustc --explain E0658`.