summaryrefslogtreecommitdiffstats
path: root/src/test/ui/macros/macro-expanded-include/foo/mod.rs
blob: cff110470f213711864b570649178f1c6319e279 (plain)
1
2
3
4
5
6
7
8
9
// ignore-test

macro_rules! m {
    () => { include!("file.txt"); }
}

macro_rules! n {
    () => { unsafe { core::arch::asm!(include_str!("file.txt")); } }
}