]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/target/issue_4943.rs
Merge commit '63734fcdd718cca089f84c42f3a42c0096cfd431' into sync_cg_clif-2022-05-15
[rust.git] / src / tools / rustfmt / tests / target / issue_4943.rs
1 #![feature(generic_associated_types)]
2
3 impl SomeStruct {
4     fn process<T>(v: T) -> <Self as GAT>::R<T>
5     where
6         Self: GAT<R<T> = T>,
7     {
8         SomeStruct::do_something(v)
9     }
10 }