1
Fork 0
rust/src/test/ui/feature-gates/feature-gate-asm_const.rs

11 lines
174 B
Rust
Raw Normal View History

// only-x86_64
#![feature(asm)]
fn main() {
unsafe {
asm!("mov eax, {}", const 123);
//~^ ERROR const operands for inline assembly are unstable
}
}