mirror of
https://github.com/tc39/test262.git
synced 2025-07-01 11:14:52 +02:00
11 lines
279 B
JavaScript
11 lines
279 B
JavaScript
// Copyright (C) 2017 Robin Templeton. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
description: JSON serialization of BigInt values
|
|
esid: pending
|
|
features: [BigInt]
|
|
---*/
|
|
|
|
assert.throws(TypeError, () => JSON.stringify(0n));
|