]> git.proxmox.com Git - rustc.git/blame - compiler/rustc_error_codes/src/error_codes/E0662.md
New upstream version 1.60.0+dfsg1
[rustc.git] / compiler / rustc_error_codes / src / error_codes / E0662.md
CommitLineData
5099ac24
FG
1#### Note: this error code is no longer emitted by the compiler.
2
ba9703b0
XL
3An invalid input operand constraint was passed to the `llvm_asm` macro
4(third line).
60c5eb7d
XL
5
6Erroneous code example:
7
5099ac24 8```ignore (no longer emitted)
ba9703b0
XL
9llvm_asm!("xor %eax, %eax"
10 :
11 : "=test"("a")
12 );
60c5eb7d 13```