summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/issue-3759.rs
blob: b53f5391a344573759f0263db5e33f14a47ce7dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
fn main() {
    let Test {
        #[cfg(feature = "test")]
        x,
    } = Test {
        #[cfg(feature = "test")]
        x: 1,
    };

    let Test {
        #[cfg(feature = "test")]
        // comment
        x,
    } = Test {
        #[cfg(feature = "test")]
        x: 1,
    };

    let Test {
        // comment
        #[cfg(feature = "test")]
        x,
    } = Test {
        #[cfg(feature = "test")]
        x: 1,
    };
}