mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-03 10:47:16 +00:00
10 lines
189 B
Rust
10 lines
189 B
Rust
//@ ignore-auxiliary (used by `../test.rs`)
|
|
|
|
macro_rules! m {
|
|
() => { include!("file.txt"); }
|
|
}
|
|
|
|
macro_rules! n {
|
|
() => { unsafe { core::arch::asm!(include_str!("file.txt")); } }
|
|
}
|