rust/src/test/ui/feature-gates/feature-gate-unboxed-closures.stderr

14 lines
438 B
Plaintext
Raw Normal View History

error[E0658]: rust-call ABI is subject to change (see issue #29625)
2018-12-25 09:56:47 -06:00
--> $DIR/feature-gate-unboxed-closures.rs:6:5
|
2018-02-22 18:42:32 -06:00
LL | / extern "rust-call" fn call_once(self, (a, b): (u32, u32)) -> u32 {
LL | | a + b
LL | | }
| |_____^
|
= help: add #![feature(unboxed_closures)] to the crate attributes to enable
error: aborting due to previous error
2018-03-03 08:59:40 -06:00
For more information about this error, try `rustc --explain E0658`.