2021-07-02 11:30:20 -05:00
|
|
|
// aux-build:test-macros.rs
|
2021-08-23 05:49:31 -05:00
|
|
|
// run-rustfix
|
2021-07-02 11:30:20 -05:00
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
extern crate test_macros;
|
|
|
|
|
|
|
|
//! Inner doc comment
|
|
|
|
//~^ ERROR expected outer doc comment
|
|
|
|
#[derive(Empty)]
|
2021-08-23 05:49:31 -05:00
|
|
|
pub struct Foo; //~ NOTE the inner doc comment doesn't annotate this struct
|
2021-07-02 11:30:20 -05:00
|
|
|
|
|
|
|
fn main() {}
|