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