]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/target/issue_4911.rs
Rollup merge of #95040 - frank-king:fix/94981, r=Mark-Simulacrum
[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 }