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

An invalid syntax was passed to the second argument of an `llvm_asm` macro line.

Erroneous code example:

```ignore (no longer emitted)
let a;
llvm_asm!("nop" : "r"(a));
```