Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
proc-macro
/
issue-86781-bad-inner-doc.fixed
blob: 367ad66a1a62b546e293d3101250637b1a1c7097 [
file
] [
log
] [
blame
] [
edit
]
//@ 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
()
{}