f1c8673ae7
UI tests now run on asmjs-unknown-emscripten, ignore tests with inline assembly which is not supported on emscripten targets
11 lines
142 B
Rust
11 lines
142 B
Rust
// ignore-emscripten
|
|
|
|
#![feature(asm)]
|
|
|
|
fn main() {
|
|
asm!("xor %eax, %eax"
|
|
:
|
|
: "+test"("a") //~ ERROR E0663
|
|
);
|
|
}
|