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