blob: ecce7bfdf5bba9732ba72810968e8fe6772d4621 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// build-fail
// ignore-emscripten no asm! support
// Regression test for #69092
#![feature(llvm_asm)]
fn main() {
unsafe { llvm_asm!(".ascii \"Xen\0\""); }
//~^ ERROR: <inline asm>:1:9: error: expected string in '.ascii' directive
}
|