]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/target/issue_4911.rs
Rollup merge of #101642 - SkiFire13:fix-inplace-collection-leak, r=the8472
[rust.git] / src / tools / rustfmt / tests / target / issue_4911.rs
1 #![feature(min_type_alias_impl_trait)]
2
3 impl SomeTrait for SomeType {
4     type SomeGAT<'a>
5     where
6         Self: 'a,
7     = impl SomeOtherTrait;
8 }