blob: 2e4c4c7f8a99c59111302aa187555788e17e16cc (
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")); } }
}
|