summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/doc-of-generic-item.rs
blob: 2efc5e09a3d34e684604f5b4994a382cce1cea8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Non-doc pre-comment of Foo
/// doc of Foo
// Non-doc post-comment of Foo
struct Foo<
    // Non-doc pre-comment of 'a
    /// doc of 'a
    'a,
    // Non-doc pre-comment of T
    /// doc of T
    T,
    // Non-doc pre-comment of N
    /// doc of N
    const N: item,
>;