summaryrefslogtreecommitdiffstats
path: root/compiler/rustc_error_codes/src/error_codes/E0662.md
blob: ffb716f9957a00dc055fbb4f5f4db9381e48405f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#### Note: this error code is no longer emitted by the compiler.

An invalid input operand constraint was passed to the `llvm_asm` macro
(third line).

Erroneous code example:

```ignore (no longer emitted)
llvm_asm!("xor %eax, %eax"
          :
          : "=test"("a")
         );
```