rust/src/test/ui/impl-trait/issue-86465.rs

11 lines
248 B
Rust
Raw Normal View History

2021-07-20 10:16:41 -05:00
#![feature(min_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>) {
//~^ ERROR concrete type differs from previous defining opaque type use
(a, a)
}
fn main() {}