summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/source/issue-5011.rs
blob: b48292164e43ab4b13d9f4e22a97d3c2ec1af769 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
pub(crate) struct ASlash(
    // hello
    i32
);

pub(crate) struct AStar(
    /* hello */
    i32
);

pub(crate) struct BStar(/* hello */ i32);