9 lines
147 B
Rust
9 lines
147 B
Rust
// run-pass
|
|
// pretty-expanded FIXME #23616
|
|
// ignore-emscripten no asm
|
|
|
|
#![feature(asm)]
|
|
|
|
pub fn main() {
|
|
unsafe { asm!(concat!("", "")) };
|
|
}
|