2019-04-10 23:40:12 +00:00
|
|
|
error[E0658]: rust-call ABI is subject to change
|
2023-10-31 13:45:26 +00:00
|
|
|
--> $DIR/feature-gate-unboxed-closures-manual-impls.rs:13:12
|
2017-12-06 08:27:47 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | extern "rust-call" fn call(self, args: ()) -> () {}
|
2019-10-27 22:14:35 +00:00
|
|
|
| ^^^^^^^^^^^
|
2017-12-06 08:27:47 +00:00
|
|
|
|
|
2020-02-07 12:07:02 +00:00
|
|
|
= note: see issue #29625 <https://github.com/rust-lang/rust/issues/29625> for more information
|
2019-07-09 09:32:08 +00:00
|
|
|
= help: add `#![feature(unboxed_closures)]` to the crate attributes to enable
|
2017-12-06 08:27:47 +00:00
|
|
|
|
2019-04-10 23:40:12 +00:00
|
|
|
error[E0658]: rust-call ABI is subject to change
|
2023-10-31 13:45:26 +00:00
|
|
|
--> $DIR/feature-gate-unboxed-closures-manual-impls.rs:22:12
|
2017-12-06 08:27:47 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | extern "rust-call" fn call_once(self, args: ()) -> () {}
|
2019-10-27 22:14:35 +00:00
|
|
|
| ^^^^^^^^^^^
|
2017-12-06 08:27:47 +00:00
|
|
|
|
|
2020-02-07 12:07:02 +00:00
|
|
|
= note: see issue #29625 <https://github.com/rust-lang/rust/issues/29625> for more information
|
2019-07-09 09:32:08 +00:00
|
|
|
= help: add `#![feature(unboxed_closures)]` to the crate attributes to enable
|
2017-12-06 08:27:47 +00:00
|
|
|
|
2019-04-10 23:40:12 +00:00
|
|
|
error[E0658]: rust-call ABI is subject to change
|
2023-10-31 13:45:26 +00:00
|
|
|
--> $DIR/feature-gate-unboxed-closures-manual-impls.rs:30:12
|
2017-12-06 08:27:47 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | extern "rust-call" fn call_mut(&self, args: ()) -> () {}
|
2019-10-27 22:14:35 +00:00
|
|
|
| ^^^^^^^^^^^
|
2017-12-06 08:27:47 +00:00
|
|
|
|
|
2020-02-07 12:07:02 +00:00
|
|
|
= note: see issue #29625 <https://github.com/rust-lang/rust/issues/29625> for more information
|
2019-07-09 09:32:08 +00:00
|
|
|
= help: add `#![feature(unboxed_closures)]` to the crate attributes to enable
|
2017-12-06 08:27:47 +00:00
|
|
|
|
2019-04-10 23:40:12 +00:00
|
|
|
error[E0658]: rust-call ABI is subject to change
|
2023-10-31 13:45:26 +00:00
|
|
|
--> $DIR/feature-gate-unboxed-closures-manual-impls.rs:39:12
|
2017-12-06 08:27:47 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | extern "rust-call" fn call_once(&self, args: ()) -> () {}
|
2019-10-27 22:14:35 +00:00
|
|
|
| ^^^^^^^^^^^
|
2017-12-06 08:27:47 +00:00
|
|
|
|
|
2020-02-07 12:07:02 +00:00
|
|
|
= note: see issue #29625 <https://github.com/rust-lang/rust/issues/29625> for more information
|
2019-07-09 09:32:08 +00:00
|
|
|
= help: add `#![feature(unboxed_closures)]` to the crate attributes to enable
|
2017-12-06 08:27:47 +00:00
|
|
|
|
2019-12-12 22:48:46 +00:00
|
|
|
error[E0658]: the precise format of `Fn`-family traits' type parameters is subject to change
|
2019-01-02 14:14:24 +00:00
|
|
|
--> $DIR/feature-gate-unboxed-closures-manual-impls.rs:9:6
|
|
|
|
|
|
|
|
|
LL | impl Fn<()> for Foo {
|
2022-01-12 22:13:52 +00:00
|
|
|
| ^^^^^^
|
2019-01-02 14:14:24 +00:00
|
|
|
|
|
2020-02-07 12:07:02 +00:00
|
|
|
= note: see issue #29625 <https://github.com/rust-lang/rust/issues/29625> for more information
|
2019-07-09 09:32:08 +00:00
|
|
|
= help: add `#![feature(unboxed_closures)]` to the crate attributes to enable
|
2019-01-02 14:14:24 +00:00
|
|
|
|
2022-01-12 22:13:52 +00:00
|
|
|
error[E0183]: manual implementations of `Fn` are experimental
|
|
|
|
--> $DIR/feature-gate-unboxed-closures-manual-impls.rs:9:6
|
|
|
|
|
|
|
|
|
LL | impl Fn<()> for Foo {
|
|
|
|
| ^^^^^^ manual implementations of `Fn` are experimental
|
|
|
|
|
|
|
|
|
= help: add `#![feature(unboxed_closures)]` to the crate attributes to enable
|
|
|
|
|
|
|
|
error[E0183]: manual implementations of `FnOnce` are experimental
|
2023-10-31 13:45:26 +00:00
|
|
|
--> $DIR/feature-gate-unboxed-closures-manual-impls.rs:18:6
|
2022-01-12 22:13:52 +00:00
|
|
|
|
|
|
|
|
LL | impl FnOnce() for Foo1 {
|
|
|
|
| ^^^^^^^^ manual implementations of `FnOnce` are experimental
|
|
|
|
|
|
|
|
|
= help: add `#![feature(unboxed_closures)]` to the crate attributes to enable
|
|
|
|
|
2019-01-02 14:14:24 +00:00
|
|
|
error[E0229]: associated type bindings are not allowed here
|
2023-10-31 13:45:26 +00:00
|
|
|
--> $DIR/feature-gate-unboxed-closures-manual-impls.rs:18:6
|
2019-01-02 14:14:24 +00:00
|
|
|
|
|
|
|
|
LL | impl FnOnce() for Foo1 {
|
2019-09-05 00:36:01 +00:00
|
|
|
| ^^^^^^^^ associated type not allowed here
|
2023-03-09 07:42:45 +00:00
|
|
|
|
|
|
|
|
help: parenthesized trait syntax expands to `FnOnce<(), Output=()>`
|
2023-10-31 13:45:26 +00:00
|
|
|
--> $DIR/feature-gate-unboxed-closures-manual-impls.rs:18:6
|
2023-03-09 07:42:45 +00:00
|
|
|
|
|
|
|
|
LL | impl FnOnce() for Foo1 {
|
|
|
|
| ^^^^^^^^
|
2019-01-02 14:14:24 +00:00
|
|
|
|
2019-12-12 22:48:46 +00:00
|
|
|
error[E0658]: the precise format of `Fn`-family traits' type parameters is subject to change
|
2023-10-31 13:45:26 +00:00
|
|
|
--> $DIR/feature-gate-unboxed-closures-manual-impls.rs:26:6
|
2019-01-02 14:14:24 +00:00
|
|
|
|
|
|
|
|
LL | impl FnMut<()> for Bar {
|
2022-01-12 22:13:52 +00:00
|
|
|
| ^^^^^^^^^
|
2019-01-02 14:14:24 +00:00
|
|
|
|
|
2020-02-07 12:07:02 +00:00
|
|
|
= note: see issue #29625 <https://github.com/rust-lang/rust/issues/29625> for more information
|
2019-07-09 09:32:08 +00:00
|
|
|
= help: add `#![feature(unboxed_closures)]` to the crate attributes to enable
|
2019-01-02 14:14:24 +00:00
|
|
|
|
2020-04-16 00:00:23 +00:00
|
|
|
error[E0183]: manual implementations of `FnMut` are experimental
|
2023-10-31 13:45:26 +00:00
|
|
|
--> $DIR/feature-gate-unboxed-closures-manual-impls.rs:26:6
|
2020-04-16 00:00:23 +00:00
|
|
|
|
|
|
|
|
LL | impl FnMut<()> for Bar {
|
2022-01-12 22:13:52 +00:00
|
|
|
| ^^^^^^^^^ manual implementations of `FnMut` are experimental
|
2020-04-16 00:00:23 +00:00
|
|
|
|
|
|
|
|
= help: add `#![feature(unboxed_closures)]` to the crate attributes to enable
|
|
|
|
|
2022-01-12 22:13:52 +00:00
|
|
|
error[E0658]: the precise format of `Fn`-family traits' type parameters is subject to change
|
2023-10-31 13:45:26 +00:00
|
|
|
--> $DIR/feature-gate-unboxed-closures-manual-impls.rs:35:6
|
2020-04-16 00:00:23 +00:00
|
|
|
|
|
2022-01-12 22:13:52 +00:00
|
|
|
LL | impl FnOnce<()> for Baz {
|
|
|
|
| ^^^^^^^^^^
|
2020-04-16 00:00:23 +00:00
|
|
|
|
|
2022-01-12 22:13:52 +00:00
|
|
|
= note: see issue #29625 <https://github.com/rust-lang/rust/issues/29625> for more information
|
2020-04-16 00:00:23 +00:00
|
|
|
= help: add `#![feature(unboxed_closures)]` to the crate attributes to enable
|
|
|
|
|
|
|
|
error[E0183]: manual implementations of `FnOnce` are experimental
|
2023-10-31 13:45:26 +00:00
|
|
|
--> $DIR/feature-gate-unboxed-closures-manual-impls.rs:35:6
|
2020-04-16 00:00:23 +00:00
|
|
|
|
|
|
|
|
LL | impl FnOnce<()> for Baz {
|
2022-01-12 22:13:52 +00:00
|
|
|
| ^^^^^^^^^^ manual implementations of `FnOnce` are experimental
|
2020-04-16 00:00:23 +00:00
|
|
|
|
|
|
|
|
= help: add `#![feature(unboxed_closures)]` to the crate attributes to enable
|
|
|
|
|
2023-10-31 13:45:26 +00:00
|
|
|
error[E0277]: expected a `FnMut()` closure, found `Foo`
|
|
|
|
--> $DIR/feature-gate-unboxed-closures-manual-impls.rs:9:17
|
|
|
|
|
|
|
|
|
LL | impl Fn<()> for Foo {
|
|
|
|
| ^^^ expected an `FnMut()` closure, found `Foo`
|
|
|
|
|
|
|
|
|
= help: the trait `FnMut<()>` is not implemented for `Foo`
|
|
|
|
= note: wrap the `Foo` in a closure with no arguments: `|| { /* code */ }`
|
|
|
|
note: required by a bound in `Fn`
|
|
|
|
--> $SRC_DIR/core/src/ops/function.rs:LL:COL
|
|
|
|
|
|
|
|
error[E0053]: method `call` has an incompatible type for trait
|
|
|
|
--> $DIR/feature-gate-unboxed-closures-manual-impls.rs:13:32
|
|
|
|
|
|
|
|
|
LL | extern "rust-call" fn call(self, args: ()) -> () {}
|
|
|
|
| ^^^^
|
|
|
|
| |
|
|
|
|
| expected `&Foo`, found `Foo`
|
|
|
|
| help: change the self-receiver type to match the trait: `&self`
|
|
|
|
|
|
|
|
|
= note: expected signature `extern "rust-call" fn(&Foo, ()) -> _`
|
|
|
|
found signature `extern "rust-call" fn(Foo, ())`
|
|
|
|
|
|
|
|
error[E0046]: not all trait items implemented, missing: `Output`
|
|
|
|
--> $DIR/feature-gate-unboxed-closures-manual-impls.rs:18:1
|
|
|
|
|
|
|
|
|
LL | impl FnOnce() for Foo1 {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^ missing `Output` in implementation
|
|
|
|
|
|
|
|
|
= help: implement the missing item: `type Output = /* Type */;`
|
|
|
|
|
|
|
|
error[E0277]: expected a `FnOnce()` closure, found `Bar`
|
|
|
|
--> $DIR/feature-gate-unboxed-closures-manual-impls.rs:26:20
|
|
|
|
|
|
|
|
|
LL | impl FnMut<()> for Bar {
|
|
|
|
| ^^^ expected an `FnOnce()` closure, found `Bar`
|
|
|
|
|
|
|
|
|
= help: the trait `FnOnce<()>` is not implemented for `Bar`
|
|
|
|
= note: wrap the `Bar` in a closure with no arguments: `|| { /* code */ }`
|
|
|
|
note: required by a bound in `FnMut`
|
|
|
|
--> $SRC_DIR/core/src/ops/function.rs:LL:COL
|
|
|
|
|
|
|
|
error[E0053]: method `call_mut` has an incompatible type for trait
|
|
|
|
--> $DIR/feature-gate-unboxed-closures-manual-impls.rs:30:36
|
|
|
|
|
|
|
|
|
LL | extern "rust-call" fn call_mut(&self, args: ()) -> () {}
|
|
|
|
| ^^^^^
|
|
|
|
| |
|
|
|
|
| types differ in mutability
|
|
|
|
| help: change the self-receiver type to match the trait: `&mut self`
|
|
|
|
|
|
|
|
|
= note: expected signature `extern "rust-call" fn(&mut Bar, ()) -> _`
|
|
|
|
found signature `extern "rust-call" fn(&Bar, ())`
|
|
|
|
|
|
|
|
error[E0046]: not all trait items implemented, missing: `Output`
|
|
|
|
--> $DIR/feature-gate-unboxed-closures-manual-impls.rs:35:1
|
|
|
|
|
|
|
|
|
LL | impl FnOnce<()> for Baz {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^ missing `Output` in implementation
|
|
|
|
|
|
|
|
|
= help: implement the missing item: `type Output = /* Type */;`
|
|
|
|
|
|
|
|
error: aborting due to 18 previous errors
|
2017-12-06 08:27:47 +00:00
|
|
|
|
2023-10-31 13:45:26 +00:00
|
|
|
Some errors have detailed explanations: E0046, E0053, E0183, E0229, E0277, E0658.
|
|
|
|
For more information about an error, try `rustc --explain E0046`.
|