]> git.proxmox.com Git - rustc.git/blame - src/test/ui/unwind-abis/feature-gate-thiscall-unwind.stderr
New upstream version 1.55.0+dfsg1
[rustc.git] / src / test / ui / unwind-abis / feature-gate-thiscall-unwind.stderr
CommitLineData
6a06907d 1error[E0658]: thiscall-unwind ABI is experimental and subject to change
136023e0 2 --> $DIR/feature-gate-thiscall-unwind.rs:13:8
6a06907d 3 |
136023e0 4LL | extern "thiscall-unwind" fn fu() {}
6a06907d
XL
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
136023e0
XL
10error[E0658]: thiscall is experimental and subject to change
11 --> $DIR/feature-gate-thiscall-unwind.rs:14:8
12 |
13LL | extern "thiscall" fn f() {}
14 | ^^^^^^^^^^
15 |
16 = help: add `#![feature(abi_thiscall)]` to the crate attributes to enable
17
18error[E0658]: thiscall is experimental and subject to change
19 --> $DIR/feature-gate-thiscall-unwind.rs:17:12
20 |
21LL | extern "thiscall" fn m();
22 | ^^^^^^^^^^
23 |
24 = help: add `#![feature(abi_thiscall)]` to the crate attributes to enable
25
26error[E0658]: thiscall-unwind ABI is experimental and subject to change
27 --> $DIR/feature-gate-thiscall-unwind.rs:18:12
28 |
29LL | 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
35error[E0658]: thiscall is experimental and subject to change
36 --> $DIR/feature-gate-thiscall-unwind.rs:20:12
37 |
38LL | extern "thiscall" fn dm() {}
39 | ^^^^^^^^^^
40 |
41 = help: add `#![feature(abi_thiscall)]` to the crate attributes to enable
42
43error[E0658]: thiscall-unwind ABI is experimental and subject to change
44 --> $DIR/feature-gate-thiscall-unwind.rs:21:12
45 |
46LL | 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
52error[E0658]: thiscall is experimental and subject to change
53 --> $DIR/feature-gate-thiscall-unwind.rs:26:12
54 |
55LL | extern "thiscall" fn m() {}
56 | ^^^^^^^^^^
57 |
58 = help: add `#![feature(abi_thiscall)]` to the crate attributes to enable
59
60error[E0658]: thiscall-unwind ABI is experimental and subject to change
61 --> $DIR/feature-gate-thiscall-unwind.rs:27:12
62 |
63LL | 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
69error[E0658]: thiscall is experimental and subject to change
70 --> $DIR/feature-gate-thiscall-unwind.rs:31:12
71 |
72LL | extern "thiscall" fn im() {}
73 | ^^^^^^^^^^
74 |
75 = help: add `#![feature(abi_thiscall)]` to the crate attributes to enable
76
77error[E0658]: thiscall-unwind ABI is experimental and subject to change
78 --> $DIR/feature-gate-thiscall-unwind.rs:32:12
79 |
80LL | 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
86error[E0658]: thiscall is experimental and subject to change
87 --> $DIR/feature-gate-thiscall-unwind.rs:35:18
88 |
89LL | type TA = extern "thiscall" fn();
90 | ^^^^^^^^^^
91 |
92 = help: add `#![feature(abi_thiscall)]` to the crate attributes to enable
93
94error[E0658]: thiscall-unwind ABI is experimental and subject to change
95 --> $DIR/feature-gate-thiscall-unwind.rs:36:19
96 |
97LL | 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
103error[E0658]: thiscall is experimental and subject to change
104 --> $DIR/feature-gate-thiscall-unwind.rs:38:8
105 |
106LL | extern "thiscall" {}
107 | ^^^^^^^^^^
108 |
109 = help: add `#![feature(abi_thiscall)]` to the crate attributes to enable
110
111error[E0658]: thiscall-unwind ABI is experimental and subject to change
112 --> $DIR/feature-gate-thiscall-unwind.rs:39:8
113 |
114LL | 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
120error: aborting due to 14 previous errors
6a06907d
XL
121
122For more information about this error, try `rustc --explain E0658`.