blob: a79bb6474d8ba5f7df5830979265f7b0ce953db5 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#![feature(type_alias_impl_trait)]
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)
//~^ ERROR concrete type differs from previous defining opaque type use
}
fn main() {}
|