]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_error_codes/src/error_codes/E0660.md
Rollup merge of #93556 - dtolnay:trailingcomma, r=cjgillot
[rust.git] / compiler / rustc_error_codes / src / error_codes / E0660.md
1 #### Note: this error code is no longer emitted by the compiler.
2
3 The argument to the `llvm_asm` macro is not well-formed.
4
5 Erroneous code example:
6
7 ```ignore (no longer emitted)
8 llvm_asm!("nop" "nop");
9 ```