aboutsummaryrefslogtreecommitdiff
path: root/integration/snapshots/number-literal-bug.js
blob: c62e2d9ff541b81da106dd8921f9c8fc930cf501 (plain) (blame)
1
2
3
4
5
6
7
8
9
export function test() {
  const precision = 10;
  try {
    parseFloat(0 .toPrecision(precision) + "1");
  } catch (exception) {
    throw new Error("Test Failed", exception);
  }
  testDone(import.meta.url);
}