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