1
Fork 0
rust/src/test/ui/parser/doc-inside-trait-item.rs

6 lines
135 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
}
fn main() {}