summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/issue-4984/multiple_comments_within.rs
blob: d2924f0d0f2e2534ed8a8d85b6f49f40eaa8081c (plain)
1
2
3
4
5
6
7
8
9
10
11
#[derive(
    /* ---------- Some really important comment that just had to go inside the derive --------- */
    Debug,
    Clone,
    /* Another comment */ Eq,
    PartialEq,
)]
struct Foo {
    a: i32,
    b: T,
}