rust/src/test/compile-fail/asm-src-loc-codegen-units.rs
2018-12-25 21:08:33 -07:00

12 lines
280 B
Rust

// WONTFIX(#20184) Needs landing pads (not present in stage1) or the compiler hangs.
// ignore-stage1
// compile-flags: -C codegen-units=2
// ignore-emscripten
#![feature(asm)]
fn main() {
unsafe {
asm!("nowayisthisavalidinstruction"); //~ ERROR instruction
}
}