blob: ce1a0da6cad7084c760ac5350a5dd0ae1f44fe3b [file] [log] [blame]
//@ proc-macro: 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() {}