rust/src/test/ui/asm-concat-src.rs
2020-03-26 15:49:22 +00:00

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!("", "")) };
}