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.

15 lines
344 B
Rust
Raw Normal View History

#![feature(type_alias_impl_trait)]
2021-07-20 10:16:41 -05:00
pub trait Captures<'a> {}
impl<'a, T: ?Sized> Captures<'a> for T {}
type X<'a, 'b> = impl std::fmt::Debug + Captures<'a> + Captures<'b>;
2021-07-20 10:16:41 -05: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 10:16:41 -05:00
}
fn main() {}