rust/tests/ui/parser/doc-before-struct-rbrace-2.rs

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

10 lines
198 B
Rust
Raw Normal View History

struct X {
a: u8 /// document
//~^ ERROR found a documentation comment that doesn't document anything
2022-09-27 08:08:04 +00:00
//~| HELP if a comment was intended use `//`
}
fn main() {
let y = X {a: 1};
}