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

#![feature(asm)]

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