Sign in
rust
/
rust
/
b032fac34e5be72aa02748eadd4e8d8917a7e758
/
.
/
compiler
/
rustc_error_codes
/
src
/
error_codes
/
E0664.md
blob: 34135d5db33388f82e3ac4d69c9f33560fd032a2 [
file
] [
log
] [
blame
] [
view
]
#### Note: this error code is no longer emitted by the compiler.
A clobber was surrounded
by
braces
in
the
`llvm_asm`
macro
.
Erroneous
code example
:
```ignore (no longer emitted)
llvm_asm!("mov $$0x200, %eax"
:
:
: "{eax}"
);
```