rust/tests/ui/asm/unsupported-option.fixed

11 lines
303 B
Rust

//@ run-rustfix
use std::arch::global_asm;
fn main() {}
global_asm!("", options(att_syntax, 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!`