]> git.proxmox.com Git - rustc.git/blob - src/test/ui/parser/doc-before-rbrace.rs
New upstream version 1.66.0+dfsg1
[rustc.git] / src / test / ui / parser / doc-before-rbrace.rs
1 fn main() {
2 println!("Hi"); /// hi
3 //~^ ERROR found a documentation comment that doesn't document anything
4 //~| HELP if a comment was intended use `//`
5 }