10 lines
188 B
Rust
10 lines
188 B
Rust
// compile-flags: -C codegen-units=2
|
|
// ignore-emscripten
|
|
|
|
#![feature(llvm_asm)]
|
|
|
|
fn main() {
|
|
unsafe {
|
|
llvm_asm!("nowayisthisavalidinstruction"); //~ ERROR instruction
|
|
}
|
|
}
|