mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
11 lines
209 B
Rust
11 lines
209 B
Rust
//@ check-pass
|
|
//@ needs-asm-support
|
|
|
|
macro_rules! mac { () => { "" } }
|
|
macro_rules! mac2 { () => { "auxiliary/issue-40469.rs" } }
|
|
|
|
std::arch::global_asm!(mac!()); // OK
|
|
include!(mac2!()); // OK
|
|
|
|
fn main() {}
|