rust/src/test/ui/parser/doc-before-semi.rs

6 lines
150 B
Rust

fn main() {
/// hi
//~^ ERROR found a documentation comment that doesn't document anything
//~| HELP maybe a comment was intended
;
}