]> git.lizzy.rs Git - rust.git/blob - tests/ui/macros/macro-def-site-super.rs
Rollup merge of #106570 - Xaeroxe:div-duration-tests, r=JohnTitor
[rust.git] / tests / ui / macros / macro-def-site-super.rs
1 // `super` in a `macro` refers to the parent module of the macro itself and not its reexport.
2
3 // check-pass
4 // aux-build:macro-def-site-super.rs
5
6 extern crate macro_def_site_super;
7
8 type A = macro_def_site_super::public::mac!();
9
10 fn main() {}