]> git.proxmox.com Git - rustc.git/blob - src/test/ui/error-codes/E0660.stderr
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / error-codes / E0660.stderr
1 error[E0660]: malformed inline assembly
2 --> $DIR/E0660.rs:5:5
3 |
4 LL | asm!("nop" "nop");
5 | ^^^^^^^^^^^^^^^^^^
6
7 error[E0660]: malformed inline assembly
8 --> $DIR/E0660.rs:7:5
9 |
10 LL | asm!("nop" "nop" : "=r"(a));
11 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
12
13 error: aborting due to 2 previous errors
14
15 For more information about this error, try `rustc --explain E0660`.