rust/tests/ui/impl-trait/impl-fn-hrtb-bounds-2.stderr

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

14 lines
472 B
Plaintext
Raw Normal View History

2022-07-28 20:18:32 +00:00
error[E0700]: hidden type for `impl Debug` captures lifetime that does not appear in bounds
--> $DIR/impl-fn-hrtb-bounds-2.rs:5:9
|
LL | fn a() -> impl Fn(&u8) -> impl Debug {
| ---------- opaque type defined here
LL | |x| x
2022-07-28 20:18:32 +00:00
| --- ^
| |
| hidden type `&u8` captures the anonymous lifetime #1 defined here
error: aborting due to previous error
2022-07-28 20:18:32 +00:00
For more information about this error, try `rustc --explain E0700`.