summary refs log tree commit diff
path: root/src/test/ui/parser/doc-before-semi.rs
blob: c3f478fe4207757f11efb0d2669a1b7b18ce48c2 (plain)
1
2
3
4
5
6
7
8
fn main() {
    /// hi
    //~^ ERROR found a documentation comment that doesn't document anything
    //~| HELP maybe a comment was intended
    ;
    //~^ WARNING unnecessary trailing semicolon
    //~| HELP remove this semicolon
}