]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_error_codes/src/error_codes/E0663.md
Rollup merge of #93556 - dtolnay:trailingcomma, r=cjgillot
[rust.git] / compiler / rustc_error_codes / src / error_codes / E0663.md
1 #### Note: this error code is no longer emitted by the compiler.
2
3 An invalid input operand constraint was passed to the `llvm_asm` macro
4 (third line).
5
6 Erroneous code example:
7
8 ```ignore (no longer emitted)
9 llvm_asm!("xor %eax, %eax"
10           :
11           : "+test"("a")
12          );
13 ```