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

#![feature(asm)]

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