summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/doc-before-struct-rbrace-1.rs
blob: 0c8d90c3b037157cb258b6ddb061175754464371 (plain)
1
2
3
4
5
6
7
8
9
10
struct X {
    a: u8,
    /// document
    //~^ ERROR found a documentation comment that doesn't document anything
    //~| HELP if a comment was intended use `//`
}

fn main() {
    let y = X {a: 1};
}