about summary refs log tree commit diff
path: root/tests/ui/macros/macro-expanded-include/foo/mod.rs
blob: 926d84c93e58f392a5a5e654780d64a06be28e66 (plain)
1
2
3
4
5
6
7
8
9
//@ ignore-test (auxiliary, used by other tests)

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

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