aboutsummaryrefslogtreecommitdiffstats
path: root/tests/indent/rust/mod.rs
blob: cc7f2c8e6594e24c7f306363975ac4b441255166 (plain) (blame)
1
2
3
4
5
6
7
8
mod foo {
    const X: i32 = 1;

    mod bar {

        const Y: i32 = 1;
    }
}