blob: 96c019b760e95ae47507e05d6bc60887e880f7f0 (
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: expected string in '.ascii' directive
}
|