2018-01-13 14:05:51 +01:00
error[E0658]: rust-call ABI is subject to change (see issue #29625)
2019-01-02 17:14:24 +03:00
--> $DIR/feature-gate-unboxed-closures-manual-impls.rs:11:5
2017-12-06 09:27:47 +01:00
|
2018-02-23 03:42:32 +03:00
LL | extern "rust-call" fn call(self, args: ()) -> () {}
2017-12-06 09:27:47 +01:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(unboxed_closures)] to the crate attributes to enable
2018-01-13 14:05:51 +01:00
error[E0658]: rust-call ABI is subject to change (see issue #29625)
2019-01-02 17:14:24 +03:00
--> $DIR/feature-gate-unboxed-closures-manual-impls.rs:17:5
2017-12-06 09:27:47 +01:00
|
2018-02-23 03:42:32 +03:00
LL | extern "rust-call" fn call_once(self, args: ()) -> () {}
2017-12-06 09:27:47 +01:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(unboxed_closures)] to the crate attributes to enable
2018-01-13 14:05:51 +01:00
error[E0658]: rust-call ABI is subject to change (see issue #29625)
2019-01-02 17:14:24 +03:00
--> $DIR/feature-gate-unboxed-closures-manual-impls.rs:23:5
2017-12-06 09:27:47 +01:00
|
2018-02-23 03:42:32 +03:00
LL | extern "rust-call" fn call_mut(&self, args: ()) -> () {}
2017-12-06 09:27:47 +01:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(unboxed_closures)] to the crate attributes to enable
2018-01-13 14:05:51 +01:00
error[E0658]: rust-call ABI is subject to change (see issue #29625)
2019-01-02 17:14:24 +03:00
--> $DIR/feature-gate-unboxed-closures-manual-impls.rs:29:5
2017-12-06 09:27:47 +01:00
|
2018-02-23 03:42:32 +03:00
LL | extern "rust-call" fn call_once(&self, args: ()) -> () {}
2017-12-06 09:27:47 +01:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(unboxed_closures)] to the crate attributes to enable
2019-01-02 17:14:24 +03:00
error[E0658]: the precise format of `Fn`-family traits' type parameters is subject to change. Use parenthetical notation (Fn(Foo, Bar) -> Baz) instead (see issue #29625)
--> $DIR/feature-gate-unboxed-closures-manual-impls.rs:9:6
|
LL | impl Fn<()> for Foo {
| ^^^^^^
|
= help: add #![feature(unboxed_closures)] to the crate attributes to enable
error[E0229]: associated type bindings are not allowed here
--> $DIR/feature-gate-unboxed-closures-manual-impls.rs:15:12
|
LL | impl FnOnce() for Foo1 {
| ^^ associated type not allowed here
error[E0658]: the precise format of `Fn`-family traits' type parameters is subject to change. Use parenthetical notation (Fn(Foo, Bar) -> Baz) instead (see issue #29625)
--> $DIR/feature-gate-unboxed-closures-manual-impls.rs:21:6
|
LL | impl FnMut<()> for Bar {
| ^^^^^^^^^
|
= help: add #![feature(unboxed_closures)] to the crate attributes to enable
error[E0658]: the precise format of `Fn`-family traits' type parameters is subject to change. Use parenthetical notation (Fn(Foo, Bar) -> Baz) instead (see issue #29625)
--> $DIR/feature-gate-unboxed-closures-manual-impls.rs:27:6
|
LL | impl FnOnce<()> for Baz {
| ^^^^^^^^^^
|
= help: add #![feature(unboxed_closures)] to the crate attributes to enable
error: aborting due to 8 previous errors
2017-12-06 09:27:47 +01:00
2019-01-02 17:14:24 +03:00
Some errors occurred: E0229, E0658.
For more information about an error, try `rustc --explain E0229`.