summaryrefslogtreecommitdiff
path: root/tests/testdata/run/wasm_shared.ts
blob: b713385d5a46cacebc3bfccc0dc43ea54b2e5c98 (plain)
1
2
3
4
5
6
const memory = new WebAssembly.Memory({
  initial: 1,
  maximum: 10,
  shared: true,
});
console.assert(memory.buffer instanceof SharedArrayBuffer);