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