mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-29 07:26:06 +00:00
9 lines
122 B
Rust
9 lines
122 B
Rust
// needs-asm-support
|
|
|
|
use std::arch::asm;
|
|
|
|
const _: () = unsafe { asm!("nop") };
|
|
//~^ ERROR inline assembly
|
|
|
|
fn main() {}
|