2021-07-26 15:01:16 -05:00
|
|
|
#![feature(type_alias_impl_trait)]
|
2021-07-20 10:16:41 -05:00
|
|
|
|
|
|
|
type X<'a, 'b> = impl std::fmt::Debug;
|
|
|
|
|
|
|
|
fn f<'t, 'u>(a: &'t u32, b: &'u u32) -> (X<'t, 'u>, X<'u, 't>) {
|
|
|
|
(a, a)
|
2022-02-09 10:44:17 -06:00
|
|
|
//~^ ERROR concrete type differs from previous defining opaque type use
|
2021-07-20 10:16:41 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|