Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
proc-macro
/
issue-86781-bad-inner-doc.fixed
blob: 426a5fa723fcff33c8277cfa8315b60d6ee51a3f [
file
] [
log
] [
blame
]
// aux-build:test-macros.rs
// run-rustfix
#[macro_use]
extern
crate test_macros
;
/// Inner doc comment
//~^ ERROR expected outer doc comment
#[derive(Empty)]
pub
struct
Foo
;
//~ NOTE the inner doc comment doesn't annotate this struct
fn main
()
{}