2022-07-28 15:18:32 -05:00
|
|
|
#![feature(impl_trait_in_fn_trait_return)]
|
2022-06-23 10:00:03 -05:00
|
|
|
use std::fmt::Debug;
|
|
|
|
|
|
|
|
fn a() -> impl Fn(&u8) -> impl Debug {
|
2022-07-28 15:18:32 -05:00
|
|
|
|x| x //~ ERROR hidden type for `impl Debug` captures lifetime that does not appear in bounds
|
2022-06-23 10:00:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|