rust/tests/ui/parser/doc-inside-trait-item.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
136 B
Rust
Raw Normal View History

2019-03-13 09:58:05 +05:30
trait User{
fn test();
/// empty doc
//~^ ERROR found a documentation comment that doesn't document anything
}
2019-03-13 11:53:06 +05:30
fn main() {}