about summary refs log tree commit diff
path: root/tests/ui/asm/issue-99122.rs
blob: e2675dc431d96b5dad5baa7d3dc82284aa8ad66c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//@ 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() {}