9 lines
151 B
Rust
9 lines
151 B
Rust
// ignore-emscripten
|
|
|
|
#![feature(llvm_asm)]
|
|
|
|
fn main() {
|
|
unsafe {
|
|
llvm_asm!("nowayisthisavalidinstruction"); //~ ERROR instruction
|
|
}
|
|
}
|