]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc/issue-89852.rs
dff2d07ac2537c376993a4dddf8741acbd7a9241
[rust.git] / src / test / rustdoc / issue-89852.rs
1 // edition:2018
2
3 #![no_core]
4 #![feature(no_core)]
5
6 // @count issue_89852/index.html '//*[@class="macro"]' 2
7 // @has - '//*[@class="macro"]/@href' 'macro.repro.html'
8 #[macro_export]
9 macro_rules! repro {
10     () => {};
11 }
12
13 // @!has issue_89852/macro.repro.html '//*[@class="macro"]/@content' 'repro2'
14 pub use crate::repro as repro2;