blob: 6fd52ceb24ca6a4283e975f38a6dcb2570c71c7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// 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
};
|