about summary refs log tree commit diff
path: root/src/test/rustdoc/through-proc-macro.rs
blob: 348c9eea2dcbf89ca1627a3f6e439f90aed5f8c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// aux-build:through-proc-macro-aux.rs
// build-aux-docs
#![warn(intra_doc_link_resolution_failure)]
extern crate some_macros;

#[some_macros::second]
pub enum Boom {
    /// [Oooops]
    Bam,
}

fn main() {}