blob: d3663e24e60a2979d9a9d58c9111075d0ff85d86 [file] [log] [blame]
// ignore-emscripten no asm! support
#![feature(asm)]
fn main() {
unsafe {
asm!("" :: "r"(""));
//~^ ERROR: invalid value for constraint in inline assembly
}
}