]> git.lizzy.rs Git - rust.git/blob - tests/target/issue_4911.rs
fix: handle GAT types in impls with self bounds
[rust.git] / tests / target / issue_4911.rs
1 #![feature(generic_associated_types)]
2 #![feature(min_type_alias_impl_trait)]
3
4 impl SomeTrait for SomeType {
5     type SomeGAT<'a>
6     where
7         Self: 'a,
8     = impl SomeOtherTrait;
9 }