Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
struct X {
a: u8 /** document a */,
//~^ ERROR found a documentation comment that doesn't document anything
//~| HELP if a comment was intended use `//`
}
struct Y {
a: u8 /// document a
fn main() {
let x = X { a: 1 };
let y = Y { a: 1 };