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