Sign in
android
/
toolchain
/
rustc
/
cd1aefd586783f162dd848e314bd6991a5ffe033
/
.
/
tests
/
ui
/
proc-macro
/
issue-86781-bad-inner-doc.rs
blob: 31e3f3c859236718060cd339080330d95c4b7b20 [
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
()
{}