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

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

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