Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / jit-test / tests / basic / testConstructorBail.js
1 function testConstructorBail() {
2     for (let i = 0; i < 5; ++i) new Number(/x/);
3 }
4 testConstructorBail();