mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-14 23:22:30 +00:00
12 lines
313 B
Plaintext
12 lines
313 B
Plaintext
//@ needs-asm-support
|
|
//@ run-rustfix
|
|
|
|
use std::arch::global_asm;
|
|
|
|
fn main() {}
|
|
|
|
global_asm!("", options( raw));
|
|
//~^ ERROR the `nomem` option cannot be used with `global_asm!`
|
|
//~| ERROR the `readonly` option cannot be used with `global_asm!`
|
|
//~| ERROR the `noreturn` option cannot be used with `global_asm!`
|