]> git.lizzy.rs Git - rust.git/blob - tests/target/issue_4911.rs
Merge commit 'efa8f5521d3813cc897ba29ea0ef98c7aef66bb6' into rustfmt-subtree
[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 }