rust/tests/ui/parser/doc-after-struct-field.rs

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

17 lines
394 B
Rust
Raw Normal View History

struct X {
a: u8 /** document a */,
//~^ 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 `//`
}
struct Y {
a: u8 /// document a
//~^ 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 x = X { a: 1 };
let y = Y { a: 1 };
}