]> git.lizzy.rs Git - rust.git/blob - tests/ui/parser/doc-before-semi.rs
Rollup merge of #107553 - edward-shen:edward-shen/suggest-null-ptr, r=WaffleLapkin
[rust.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 }