mirror of
https://github.com/tc39/test262.git
synced 2025-05-06 16:00:33 +02:00
8 lines
140 B
JavaScript
8 lines
140 B
JavaScript
//@ runWebAssembly
|
|
// This passes if it does not crash.
|
|
new WebAssembly.CompileError({
|
|
valueOf() {
|
|
throw new Error();
|
|
}
|
|
});
|