2020-09-30 09:58:01 -07:00
|
|
|
error[E0015]: inline assembly is not allowed in constants
|
2021-11-03 16:10:09 +00:00
|
|
|
--> $DIR/inline_asm.rs:5:24
|
2020-04-19 16:03:35 -07:00
|
|
|
|
|
2021-07-29 19:45:13 +02:00
|
|
|
LL | const _: () = unsafe { asm!("nop") };
|
|
|
|
| ^^^^^^^^^^^
|
2020-04-19 16:03:35 -07:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2020-09-30 09:58:01 -07:00
|
|
|
For more information about this error, try `rustc --explain E0015`.
|