2022-10-19 11:34:00 -07:00
|
|
|
// needs-asm-support
|
2013-10-05 07:25:59 +02:00
|
|
|
// pp-exact
|
|
|
|
|
2014-09-24 20:22:57 -07:00
|
|
|
#[cfg(foo = r#"just parse this"#)]
|
2015-03-19 15:39:03 -07:00
|
|
|
extern crate blah as blah;
|
2013-10-05 07:25:59 +02:00
|
|
|
|
2022-01-12 00:00:00 +00:00
|
|
|
use std::arch::asm;
|
|
|
|
|
|
|
|
fn main() { unsafe { asm!(r###"blah"###); } }
|