rust/src/test/ui/consts/inline_asm.stderr

10 lines
284 B
Plaintext
Raw Normal View History

error[E0015]: inline assembly is not allowed in constants
2020-04-21 11:24:41 -05:00
--> $DIR/inline_asm.rs:3:24
|
2021-07-29 12:45:13 -05:00
LL | const _: () = unsafe { asm!("nop") };
| ^^^^^^^^^^^
error: aborting due to previous error
For more information about this error, try `rustc --explain E0015`.