]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/target/issue_4911.rs
Merge commit 'e36a20c24f35a4cee82bbdc600289104c9237c22' into ra-sync-and-pms-component
[rust.git] / src / tools / rustfmt / 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 }