2022-07-28 15:18:32 -05:00
|
|
|
#![feature(impl_trait_in_fn_trait_return)]
|
2022-06-23 10:12:13 -05:00
|
|
|
use std::fmt::Debug;
|
|
|
|
|
|
|
|
fn a<'a>() -> impl Fn(&'a u8) -> (impl Debug + '_) {
|
2022-10-25 08:47:43 -05:00
|
|
|
//~^ ERROR cannot resolve opaque type
|
|
|
|
|
2022-06-23 10:12:13 -05:00
|
|
|
|x| x
|
2022-10-25 08:47:43 -05:00
|
|
|
//~^ ERROR concrete type differs from previous defining opaque type use
|
2022-06-23 10:12:13 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn _b<'a>() -> impl Fn(&'a u8) -> (impl Debug + 'a) {
|
|
|
|
a()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|