2018-01-13 07:05:51 -06:00
|
|
|
error[E0658]: rust-call ABI is subject to change (see issue #29625)
|
2017-12-06 02:27:47 -06:00
|
|
|
--> $DIR/feature-gate-unboxed-closures-manual-impls.rs:20:5
|
|
|
|
|
|
|
|
|
20 | extern "rust-call" fn call(self, args: ()) -> () {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: add #![feature(unboxed_closures)] to the crate attributes to enable
|
|
|
|
|
2018-01-13 07:05:51 -06:00
|
|
|
error[E0658]: rust-call ABI is subject to change (see issue #29625)
|
2017-12-06 02:27:47 -06:00
|
|
|
--> $DIR/feature-gate-unboxed-closures-manual-impls.rs:25:5
|
|
|
|
|
|
|
|
|
25 | extern "rust-call" fn call_once(self, args: ()) -> () {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: add #![feature(unboxed_closures)] to the crate attributes to enable
|
|
|
|
|
2018-01-13 07:05:51 -06:00
|
|
|
error[E0658]: rust-call ABI is subject to change (see issue #29625)
|
2017-12-06 02:27:47 -06:00
|
|
|
--> $DIR/feature-gate-unboxed-closures-manual-impls.rs:30:5
|
|
|
|
|
|
|
|
|
30 | extern "rust-call" fn call_mut(&self, args: ()) -> () {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: add #![feature(unboxed_closures)] to the crate attributes to enable
|
|
|
|
|
2018-01-13 07:05:51 -06:00
|
|
|
error[E0658]: rust-call ABI is subject to change (see issue #29625)
|
2017-12-06 02:27:47 -06:00
|
|
|
--> $DIR/feature-gate-unboxed-closures-manual-impls.rs:35:5
|
|
|
|
|
|
|
|
|
35 | extern "rust-call" fn call_once(&self, args: ()) -> () {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: add #![feature(unboxed_closures)] to the crate attributes to enable
|
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|
2018-02-19 14:40:25 -06:00
|
|
|
If you want more information on this error, try using "rustc --explain E0658"
|