rust/tests/ui/macros/auxiliary/dollar-crate-nested-encoding.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
165 B
Rust
Raw Normal View History

pub type S = u8;
macro_rules! generate_exported { () => {
#[macro_export]
macro_rules! exported {
() => ($crate::S)
}
}}
generate_exported!();