Sign in
rust
/
rust
/
13b537002bd78be5b0fda9eecf174eb5bf73db8a
/
.
/
compiler
/
rustc_error_codes
/
src
/
error_codes
/
E0661.md
blob: 245f755cddd0d649fa0cc64e4b8ebe1571c2778b [
file
] [
view
]
#### 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));
```