UI tests now run on asmjs-unknown-emscripten, ignore tests with inline assembly which is not supported on emscripten targets
11 lines
151 B
Rust
11 lines
151 B
Rust
// ignore-emscripten
|
|
|
|
#![feature(asm)]
|
|
|
|
fn main() {
|
|
asm!("mov $$0x200, %eax"
|
|
:
|
|
:
|
|
: "{eax}" //~ ERROR E0664
|
|
);
|
|
}
|