rust/tests/ui/nll/issue-78561.rs

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

24 lines
322 B
Rust
Raw Normal View History

2021-10-20 22:51:31 +00:00
// check-pass
#![feature(impl_trait_in_assoc_type)]
2021-10-20 22:51:31 +00:00
pub trait Trait {
type A;
fn f() -> Self::A;
}
pub trait Tr2<'a, 'b> {}
pub struct A<T>(T);
pub trait Tr {
type B;
}
impl<'a, 'b, T: Tr<B = dyn Tr2<'a, 'b>>> Trait for A<T> {
type A = impl core::fmt::Debug;
fn f() -> Self::A {}
}
fn main() {}