]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/target/issue_4911.rs
Auto merge of #95315 - compiler-errors:pointee-fix, r=pnkfelix
[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 }