Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// only-x86_64
use std::arch::asm;
fn main() {
unsafe {
asm!("mov eax, {}", const 123);
//~^ ERROR const operands for inline assembly are unstable
}