2022-12-14 12:24:21 -06:00
|
|
|
error: expected identifier, found keyword `self`
|
2023-03-07 15:26:02 -06:00
|
|
|
--> $DIR/bad-signatures.rs:9:23
|
2022-12-14 12:24:21 -06:00
|
|
|
|
|
|
|
|
LL | async fn bar(&abc self);
|
|
|
|
| ^^^^ expected identifier, found keyword
|
|
|
|
|
|
|
|
error: expected one of `:`, `@`, or `|`, found keyword `self`
|
2023-03-07 15:26:02 -06:00
|
|
|
--> $DIR/bad-signatures.rs:9:23
|
2022-12-14 12:24:21 -06:00
|
|
|
|
|
|
|
|
LL | async fn bar(&abc self);
|
|
|
|
| -----^^^^
|
|
|
|
| | |
|
|
|
|
| | expected one of `:`, `@`, or `|`
|
|
|
|
| help: declare the type after the parameter binding: `<identifier>: <type>`
|
|
|
|
|
|
|
|
warning: the feature `async_fn_in_trait` is incomplete and may not be safe to use and/or cause compiler crashes
|
2023-03-07 15:26:02 -06:00
|
|
|
--> $DIR/bad-signatures.rs:5:12
|
2022-12-14 12:24:21 -06:00
|
|
|
|
|
|
|
|
LL | #![feature(async_fn_in_trait)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: see issue #91611 <https://github.com/rust-lang/rust/issues/91611> for more information
|
|
|
|
= note: `#[warn(incomplete_features)]` on by default
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors; 1 warning emitted
|
|
|
|
|