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-12 23:28:05 -05:00
trait User{
fn test();
/// empty doc
//~^ ERROR found a documentation comment that doesn't document anything
}
2019-03-13 01:23:06 -05:00
fn main() {}