]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/target/issue_4943.rs
Merge commit 'e36a20c24f35a4cee82bbdc600289104c9237c22' into ra-sync-and-pms-component
[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 }