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

6 lines
166 B
Rust
Raw Permalink Normal View History

fn main() {
println!("Hi"); /// 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 `//`
}