2019-04-29 19:45:22 -05:00
|
|
|
error[E0726]: implicit elided lifetime not allowed here
|
2019-08-01 20:48:43 -05:00
|
|
|
--> $DIR/async-fn-path-elision.rs:5:20
|
2019-04-29 19:45:22 -05:00
|
|
|
|
|
|
|
|
LL | async fn error(lt: HasLifetime) {
|
2022-03-10 16:12:35 -06:00
|
|
|
| ^^^^^^^^^^^ expected lifetime parameter
|
2021-07-19 22:44:35 -05:00
|
|
|
|
|
2022-03-10 16:12:35 -06:00
|
|
|
help: indicate the anonymous lifetime
|
|
|
|
|
|
|
|
|
LL | async fn error(lt: HasLifetime<'_>) {
|
|
|
|
| ++++
|
2019-04-29 19:45:22 -05:00
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2019-04-29 19:45:22 -05:00
|
|
|
|
2022-02-28 07:37:27 -06:00
|
|
|
For more information about this error, try `rustc --explain E0726`.
|