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