summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/configs/space_before_colon/true.rs
blob: e2895b5d77b132e80714a2e77215d58d5207200d (plain)
1
2
3
4
5
6
7
8
9
10
11
// rustfmt-space_before_colon: true
// Space before colon

fn lorem<T : Eq>(t : T) {
    let ipsum : Dolor = sit;
}

const LOREM : Lorem = Lorem {
    ipsum : dolor,
    sit : amet,
};