rust/tests/ui/parser/doc-before-semi.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
156 B
Rust
Raw Normal View History

fn main() {
/// hi
//~^ ERROR found a documentation comment that doesn't document anything
2022-09-27 08:08:04 +00:00
//~| HELP if a comment was intended use `//`
;
}