]> git.proxmox.com Git - rustc.git/blob - src/test/ui/feature-gate-unboxed-closures-manual-impls.stderr
New upstream version 1.25.0+dfsg1
[rustc.git] / src / test / ui / feature-gate-unboxed-closures-manual-impls.stderr
1 error[E0658]: rust-call ABI is subject to change (see issue #29625)
2 --> $DIR/feature-gate-unboxed-closures-manual-impls.rs:20:5
3 |
4 20 | extern "rust-call" fn call(self, args: ()) -> () {}
5 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6 |
7 = help: add #![feature(unboxed_closures)] to the crate attributes to enable
8
9 error[E0658]: rust-call ABI is subject to change (see issue #29625)
10 --> $DIR/feature-gate-unboxed-closures-manual-impls.rs:25:5
11 |
12 25 | extern "rust-call" fn call_once(self, args: ()) -> () {}
13 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
14 |
15 = help: add #![feature(unboxed_closures)] to the crate attributes to enable
16
17 error[E0658]: rust-call ABI is subject to change (see issue #29625)
18 --> $DIR/feature-gate-unboxed-closures-manual-impls.rs:30:5
19 |
20 30 | extern "rust-call" fn call_mut(&self, args: ()) -> () {}
21 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
22 |
23 = help: add #![feature(unboxed_closures)] to the crate attributes to enable
24
25 error[E0658]: rust-call ABI is subject to change (see issue #29625)
26 --> $DIR/feature-gate-unboxed-closures-manual-impls.rs:35:5
27 |
28 35 | extern "rust-call" fn call_once(&self, args: ()) -> () {}
29 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
30 |
31 = help: add #![feature(unboxed_closures)] to the crate attributes to enable
32
33 error: aborting due to 4 previous errors
34