]> git.lizzy.rs Git - rust.git/blob - src/test/ui/asm-concat-src.rs
Fix thumb target CI
[rust.git] / src / test / ui / asm-concat-src.rs
1 // run-pass
2 // pretty-expanded FIXME #23616
3 // ignore-emscripten no asm
4
5 #![feature(asm)]
6
7 pub fn main() {
8     unsafe { asm!(concat!("", "")) };
9 }