]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/doc-inside-trait-item.rs
Rollup merge of #67005 - andrewbanchich:master, r=joshtriplett
[rust.git] / src / test / ui / parser / doc-inside-trait-item.rs
1 trait User{
2     fn test();
3     /// empty doc
4     //~^ ERROR found a documentation comment that doesn't document anything
5 }
6 fn main() {}