add regression test

This commit is contained in:
Esteban Küber 2019-08-26 21:12:59 -07:00
parent b2b9b81c9a
commit 7ed542da78
2 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,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() {}