]> git.proxmox.com Git - rustc.git/blob - src/test/ui/llvm-asm/issue-51431.rs
New upstream version 1.44.1+dfsg1
[rustc.git] / src / test / ui / llvm-asm / issue-51431.rs
1 // build-fail
2 // ignore-emscripten no llvm_asm! support
3
4 #![feature(llvm_asm)]
5
6 fn main() {
7 unsafe {
8 llvm_asm! {"mov $0,$1"::"0"("bx"),"1"(0x00)}
9 //~^ ERROR: invalid value for constraint in inline assembly
10 }
11 }