summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/doc-before-semi.rs
blob: 405a7e1e2a33b9eca931dfe4b53b87cd884f2e25 (plain)
1
2
3
4
5
6
fn main() {
    /// hi
    //~^ ERROR found a documentation comment that doesn't document anything
    //~| HELP maybe a comment was intended
    ;
}