blob: 9a78f0a895526a47f1e85fc5e761054ba87da055 (
plain)
1
2
3
4
5
6
7
8
9
|
#[macro_export]
macro_rules! reemit_legacy {
($($tok:tt)*) => ($($tok)*)
}
#[macro_export]
macro_rules! say_hello_extern {
($macname:ident) => ( $macname! { "Hello, world!" })
}
|