mirror of
https://github.com/tc39/test262.git
synced 2025-05-04 15:00:42 +02:00
9 lines
171 B
JavaScript
9 lines
171 B
JavaScript
//@ skip if $architecture == "x86"
|
|
//@ runDefault
|
|
// This passes if it does not crash.
|
|
new WebAssembly.CompileError({
|
|
valueOf() {
|
|
throw new Error();
|
|
}
|
|
});
|