rust/src/test/ui/parser/doc-before-struct-rbrace-1.rs
Esteban Küber d6ea6b972d fix tidy
2019-05-31 13:50:04 -07:00

11 lines
197 B
Rust

struct X {
a: u8,
/// document
//~^ ERROR found a documentation comment that doesn't document anything
//~| HELP maybe a comment was intended
}
fn main() {
let y = X {a: 1};
}