blob: 744a563d3d147695436784a6445a5119a37eb94c [file] [log] [blame]
// needs-asm-support
// only-x86_64
pub unsafe fn test() {
let pointer = 1u32 as *const _;
//~^ ERROR cannot cast to a pointer of an unknown kind
core::arch::asm!(
"nop",
in("eax") pointer,
);
}
fn main() {}