]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_error_codes/src/error_codes/E0664.md
Rollup merge of #93556 - dtolnay:trailingcomma, r=cjgillot
[rust.git] / compiler / rustc_error_codes / src / error_codes / E0664.md
1 #### Note: this error code is no longer emitted by the compiler.
2
3 A clobber was surrounded by braces in the `llvm_asm` macro.
4
5 Erroneous code example:
6
7 ```ignore (no longer emitted)
8 llvm_asm!("mov $$0x200, %eax"
9           :
10           :
11           : "{eax}"
12          );
13 ```