Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
parser
/
doc-before-struct-rbrace-1.rs
blob: 0c8d90c3b037157cb258b6ddb061175754464371 [
file
] [
log
] [
blame
] [
edit
]
struct
X
{
a
:
u8
,
/// document
//~^ ERROR found a documentation comment that doesn't document anything
//~| HELP if a comment was intended use `//`
}
fn
main
()
{
let
y
=
X
{
a
:
1
};
}