about summary refs log tree commit diff
path: root/src/test/ui/llvm-asm/llvm-asm-concat-src.rs
blob: 1dc1c859c6b0e3645ef11fbcdd53870019d42f5f (plain)
1
2
3
4
5
6
7
8
9
// run-pass
// pretty-expanded FIXME #23616
// ignore-emscripten no asm

#![feature(llvm_asm)]

pub fn main() {
    unsafe { llvm_asm!(concat!("", "")) };
}