rust/src/test/ui/E0660.stderr

16 lines
382 B
Plaintext
Raw Normal View History

2018-03-26 22:04:27 +02:00
error[E0660]: malformed inline assembly
2018-12-25 08:56:47 -07:00
--> $DIR/E0660.rs:5:5
2018-03-26 22:04:27 +02:00
|
LL | asm!("nop" "nop");
| ^^^^^^^^^^^^^^^^^^
error[E0660]: malformed inline assembly
2018-12-25 08:56:47 -07:00
--> $DIR/E0660.rs:7:5
2018-03-26 22:04:27 +02:00
|
LL | asm!("nop" "nop" : "=r"(a));
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0660`.