summary refs log tree commit diff
path: root/src/test/ui/consts/inline_asm.rs
blob: c2ab97e54f0c8252d8b4092fb71ad24208c51646 (plain)
1
2
3
4
5
6
#![feature(llvm_asm)]

const _: () = unsafe { llvm_asm!("nop") };
//~^ ERROR contains unimplemented expression type

fn main() {}