]> git.proxmox.com Git - rustc.git/blob - src/tools/rustfmt/tests/target/configs/indent_style/visual_where_pred.rs
New upstream version 1.52.1+dfsg1
[rustc.git] / src / tools / rustfmt / tests / target / configs / indent_style / visual_where_pred.rs
1 // rustfmt-indent_style: Visual
2 // Where predicate indent
3
4 fn lorem<Ipsum, Dolor, Sit, Amet>() -> T
5 where Ipsum: Eq,
6 Dolor: Eq,
7 Sit: Eq,
8 Amet: Eq
9 {
10 // body
11 }