2021-09-25 02:27:00 +03:00
|
|
|
// `super` in a `macro` refers to the parent module of the macro itself and not its reexport.
|
|
|
|
|
|
2024-02-16 20:02:50 +00:00
|
|
|
//@ check-pass
|
|
|
|
|
//@ aux-build:macro-def-site-super.rs
|
2021-09-25 02:27:00 +03:00
|
|
|
|
|
|
|
|
extern crate macro_def_site_super;
|
|
|
|
|
|
|
|
|
|
type A = macro_def_site_super::public::mac!();
|
|
|
|
|
|
|
|
|
|
fn main() {}
|