Sign in
fuchsia
/
third_party
/
rust
/
e3029abfaec4252ab0ae7010780be0094d8870e0
/
.
/
tests
/
ui
/
proc-macro
/
issue-86781-bad-inner-doc.rs
blob: c49619ef2ac7d7269e70fedfb1d0080b516fe551 [
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
()
{}