2019-04-10 16:40:12 -07:00
|
|
|
error[E0658]: rust-call ABI is subject to change
|
2019-10-27 23:14:35 +01:00
|
|
|
--> $DIR/feature-gate-unboxed-closures-manual-impls.rs:11:12
|
2017-12-06 09:27:47 +01:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | extern "rust-call" fn call(self, args: ()) -> () {}
|
2019-10-27 23:14:35 +01:00
|
|
|
| ^^^^^^^^^^^
|
2017-12-06 09:27:47 +01:00
|
|
|
|
|
2019-04-11 11:42:06 -07:00
|
|
|
= note: for more information, see https://github.com/rust-lang/rust/issues/29625
|
2019-07-09 11:32:08 +02:00
|
|
|
= help: add `#![feature(unboxed_closures)]` to the crate attributes to enable
|
2017-12-06 09:27:47 +01:00
|
|
|
|
2019-04-10 16:40:12 -07:00
|
|
|
error[E0658]: rust-call ABI is subject to change
|
2019-10-27 23:14:35 +01:00
|
|
|
--> $DIR/feature-gate-unboxed-closures-manual-impls.rs:17:12
|
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: ()) -> () {}
|
2019-10-27 23:14:35 +01:00
|
|
|
| ^^^^^^^^^^^
|
2017-12-06 09:27:47 +01:00
|
|
|
|
|
2019-04-11 11:42:06 -07:00
|
|
|
= note: for more information, see https://github.com/rust-lang/rust/issues/29625
|
2019-07-09 11:32:08 +02:00
|
|
|
= help: add `#![feature(unboxed_closures)]` to the crate attributes to enable
|
2017-12-06 09:27:47 +01:00
|
|
|
|
2019-04-10 16:40:12 -07:00
|
|
|
error[E0658]: rust-call ABI is subject to change
|
2019-10-27 23:14:35 +01:00
|
|
|
--> $DIR/feature-gate-unboxed-closures-manual-impls.rs:23:12
|
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: ()) -> () {}
|
2019-10-27 23:14:35 +01:00
|
|
|
| ^^^^^^^^^^^
|
2017-12-06 09:27:47 +01:00
|
|
|
|
|
2019-04-11 11:42:06 -07:00
|
|
|
= note: for more information, see https://github.com/rust-lang/rust/issues/29625
|
2019-07-09 11:32:08 +02:00
|
|
|
= help: add `#![feature(unboxed_closures)]` to the crate attributes to enable
|
2017-12-06 09:27:47 +01:00
|
|
|
|
2019-04-10 16:40:12 -07:00
|
|
|
error[E0658]: rust-call ABI is subject to change
|
2019-10-27 23:14:35 +01:00
|
|
|
--> $DIR/feature-gate-unboxed-closures-manual-impls.rs:29:12
|
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: ()) -> () {}
|
2019-10-27 23:14:35 +01:00
|
|
|
| ^^^^^^^^^^^
|
2017-12-06 09:27:47 +01:00
|
|
|
|
|
2019-04-11 11:42:06 -07:00
|
|
|
= note: for more information, see https://github.com/rust-lang/rust/issues/29625
|
2019-07-09 11:32:08 +02:00
|
|
|
= help: add `#![feature(unboxed_closures)]` to the crate attributes to enable
|
2017-12-06 09:27:47 +01:00
|
|
|
|
2019-12-12 14:48:46 -08:00
|
|
|
error[E0658]: the precise format of `Fn`-family traits' type parameters is subject to change
|
2019-01-02 17:14:24 +03:00
|
|
|
--> $DIR/feature-gate-unboxed-closures-manual-impls.rs:9:6
|
|
|
|
|
|
|
|
|
LL | impl Fn<()> for Foo {
|
2019-12-13 08:22:58 -08:00
|
|
|
| ^^^^^^ help: use parenthetical notation instead: `Fn() -> ()`
|
2019-01-02 17:14:24 +03:00
|
|
|
|
|
2019-04-11 11:42:06 -07:00
|
|
|
= note: for more information, see https://github.com/rust-lang/rust/issues/29625
|
2019-07-09 11:32:08 +02:00
|
|
|
= help: add `#![feature(unboxed_closures)]` to the crate attributes to enable
|
2019-01-02 17:14:24 +03:00
|
|
|
|
|
|
|
error[E0229]: associated type bindings are not allowed here
|
2019-09-04 17:36:01 -07:00
|
|
|
--> $DIR/feature-gate-unboxed-closures-manual-impls.rs:15:6
|
2019-01-02 17:14:24 +03:00
|
|
|
|
|
|
|
|
LL | impl FnOnce() for Foo1 {
|
2019-09-04 17:36:01 -07:00
|
|
|
| ^^^^^^^^ associated type not allowed here
|
2019-01-02 17:14:24 +03:00
|
|
|
|
2019-12-12 14:48:46 -08:00
|
|
|
error[E0658]: the precise format of `Fn`-family traits' type parameters is subject to change
|
2019-01-02 17:14:24 +03:00
|
|
|
--> $DIR/feature-gate-unboxed-closures-manual-impls.rs:21:6
|
|
|
|
|
|
|
|
|
LL | impl FnMut<()> for Bar {
|
2019-12-13 08:22:58 -08:00
|
|
|
| ^^^^^^^^^ help: use parenthetical notation instead: `FnMut() -> ()`
|
2019-01-02 17:14:24 +03:00
|
|
|
|
|
2019-04-11 11:42:06 -07:00
|
|
|
= note: for more information, see https://github.com/rust-lang/rust/issues/29625
|
2019-07-09 11:32:08 +02:00
|
|
|
= help: add `#![feature(unboxed_closures)]` to the crate attributes to enable
|
2019-01-02 17:14:24 +03:00
|
|
|
|
2019-12-12 14:48:46 -08:00
|
|
|
error[E0658]: the precise format of `Fn`-family traits' type parameters is subject to change
|
2019-01-02 17:14:24 +03:00
|
|
|
--> $DIR/feature-gate-unboxed-closures-manual-impls.rs:27:6
|
|
|
|
|
|
|
|
|
LL | impl FnOnce<()> for Baz {
|
2019-12-13 08:22:58 -08:00
|
|
|
| ^^^^^^^^^^ help: use parenthetical notation instead: `FnOnce() -> ()`
|
2019-01-02 17:14:24 +03:00
|
|
|
|
|
2019-04-11 11:42:06 -07:00
|
|
|
= note: for more information, see https://github.com/rust-lang/rust/issues/29625
|
2019-07-09 11:32:08 +02:00
|
|
|
= help: add `#![feature(unboxed_closures)]` to the crate attributes to enable
|
2019-01-02 17:14:24 +03:00
|
|
|
|
|
|
|
error: aborting due to 8 previous errors
|
2017-12-06 09:27:47 +01:00
|
|
|
|
2019-04-17 13:26:38 -04:00
|
|
|
Some errors have detailed explanations: E0229, E0658.
|
2019-01-02 17:14:24 +03:00
|
|
|
For more information about an error, try `rustc --explain E0229`.
|