summaryrefslogtreecommitdiffstats
path: root/tests/ui/impl-trait/impl-fn-hrtb-bounds-2.stderr
blob: 4e453c108d4bba99c7cef458fa93bc3bd6dbadc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
   |     --- ^
   |     |
   |     hidden type `&u8` captures the anonymous lifetime as defined here

error: aborting due to 1 previous error

For more information about this error, try `rustc --explain E0700`.