mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-01 11:33:20 +00:00
10 lines
193 B
Rust
10 lines
193 B
Rust
// ignore-test (auxiliary, used by other tests)
|
|
|
|
macro_rules! m {
|
|
() => { include!("file.txt"); }
|
|
}
|
|
|
|
macro_rules! n {
|
|
() => { unsafe { core::arch::asm!(include_str!("file.txt")); } }
|
|
}
|