]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/source/configs/indent_style/block_where_pred.rs
Add 'src/tools/rustfmt/' from commit '7872306edf2e11a69aaffb9434088fd66b46a863'
[rust.git] / src / tools / rustfmt / tests / source / configs / indent_style / block_where_pred.rs
1 // rustfmt-indent_style: Block
2 // Where predicate indent
3
4 fn lorem<Ipsum, Dolor, Sit, Amet>() -> T where Ipsum: Eq, Dolor: Eq, Sit: Eq, Amet: Eq {
5     // body
6 }