summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/issue_4911.rs
blob: 890a62267ce6456a015eab74bb5d27bbb5675a7f (plain)
1
2
3
4
5
6
7
8
9
#![feature(generic_associated_types)]
#![feature(min_type_alias_impl_trait)]

impl SomeTrait for SomeType {
    type SomeGAT<'a>
    where
        Self: 'a,
    = impl SomeOtherTrait;
}