]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/source/issue_4943.rs
Rollup merge of #107166 - petrochenkov:nooptable, r=oli-obk
[rust.git] / src / tools / rustfmt / tests / source / issue_4943.rs
1 impl SomeStruct {
2     fn process<T>(v: T) -> <Self as GAT>::R<T>
3     where Self: GAT<R<T> = T>
4     {
5         SomeStruct::do_something(v)
6     }
7 }