rust/tests/ui/impl-trait/issue-86465.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
244 B
Rust
Raw Normal View History

#![feature(type_alias_impl_trait)]
2021-07-20 23:16:41 +08:00
type X<'a, 'b> = impl std::fmt::Debug;
2021-07-20 23:16:41 +08:00
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
2021-07-20 23:16:41 +08:00
}
fn main() {}