]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/target/configs/space_before_colon/true.rs
Add 'src/tools/rustfmt/' from commit '7872306edf2e11a69aaffb9434088fd66b46a863'
[rust.git] / src / tools / rustfmt / tests / target / configs / space_before_colon / true.rs
1 // rustfmt-space_before_colon: true
2 // Space before colon
3
4 fn lorem<T : Eq>(t : T) {
5     let ipsum : Dolor = sit;
6 }
7
8 const LOREM : Lorem = Lorem {
9     ipsum : dolor,
10     sit : amet,
11 };