rust/tests/ui/wf/wf-in-foreign-fn-decls-issue-80468.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
412 B
Plaintext
Raw Normal View History

2020-12-31 02:25:53 +00: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 {}
| ^^^ expected lifetime parameter
|
help: indicate the anonymous lifetime
|
LL | impl Trait for Ref<'_> {}
| ++++
2020-12-31 02:25:53 +00:00
error: aborting due to 1 previous error
2020-12-31 02:25:53 +00:00
For more information about this error, try `rustc --explain E0726`.