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