summaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/regress/regress-1376663.js
blob: a459a5760361b797a08adf56ef213759dc96445f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright 2023 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// Flags: --ignore-unhandled-promises

function __f_0() {
  onmessage = function(e) {
    import("./does_not_exist.js");
    while(true) {}
  }
}
function __f_1() {
}

let sab = new SharedArrayBuffer();
let w1 = new Worker(__f_0, {type: 'function'});
w1.postMessage({sab: sab});
let w2 = new Worker(__f_1, {type: 'function'});