blob: b8b3e6f3f7e3b8f6ccef84f578a424ad00020a3c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//@ 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() {}
|