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

#![feature(asm)]

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