mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
13 lines
251 B
Rust
13 lines
251 B
Rust
// 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() {}
|