2020-12-31 11:25:53 +09:00
|
|
|
error[E0726]: implicit elided lifetime not allowed here
|
|
|
|
--> $DIR/wf-in-foreign-fn-decls-issue-80468.rs:13:16
|
|
|
|
|
|
|
|
|
LL | impl Trait for Ref {}
|
2022-03-10 23:12:35 +01:00
|
|
|
| ^^^ expected lifetime parameter
|
2021-07-19 23:44:35 -04:00
|
|
|
|
|
2022-03-10 23:12:35 +01:00
|
|
|
help: indicate the anonymous lifetime
|
|
|
|
|
|
|
|
|
LL | impl Trait for Ref<'_> {}
|
|
|
|
| ++++
|
2020-12-31 11:25:53 +09:00
|
|
|
|
2023-02-03 23:21:56 +00:00
|
|
|
error: aborting due to previous error
|
2020-12-31 11:25:53 +09:00
|
|
|
|
2022-02-28 14:37:27 +01:00
|
|
|
For more information about this error, try `rustc --explain E0726`.
|