mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
14 lines
306 B
Rust
14 lines
306 B
Rust
// compile-flags: -Zunleash-the-miri-inside-of-you
|
|
// only-x86_64
|
|
|
|
use std::arch::asm;
|
|
|
|
fn main() {}
|
|
|
|
// Make sure we catch executing inline assembly.
|
|
static TEST_BAD: () = {
|
|
unsafe { asm!("nop"); }
|
|
//~^ ERROR could not evaluate static initializer
|
|
//~| NOTE inline assembly is not supported
|
|
};
|