diff --git a/tests/baselines/reference/warnExperimentalBigIntLiteral.errors.txt b/tests/baselines/reference/warnExperimentalBigIntLiteral.errors.txt deleted file mode 100644 index 5b442c746b9..00000000000 --- a/tests/baselines/reference/warnExperimentalBigIntLiteral.errors.txt +++ /dev/null @@ -1,22 +0,0 @@ -tests/cases/compiler/warnExperimentalBigIntLiteral.ts(5,22): error TS2737: BigInt literals are not available when targeting lower than ESNext. -tests/cases/compiler/warnExperimentalBigIntLiteral.ts(5,29): error TS2737: BigInt literals are not available when targeting lower than ESNext. -tests/cases/compiler/warnExperimentalBigIntLiteral.ts(5,39): error TS2737: BigInt literals are not available when targeting lower than ESNext. -tests/cases/compiler/warnExperimentalBigIntLiteral.ts(5,48): error TS2737: BigInt literals are not available when targeting lower than ESNext. - - -==== tests/cases/compiler/warnExperimentalBigIntLiteral.ts (4 errors) ==== - const normalNumber = 123; // should not error - let bigintType: bigint; // should not error - let bigintLiteralType: 123n; // should not error when used as type - let bigintNegativeLiteralType: -123n; // should not error when used as type - const bigintNumber = 123n * 0b1111n + 0o444n * 0x7fn; // each literal should error - ~~~~ -!!! error TS2737: BigInt literals are not available when targeting lower than ESNext. - ~~~~~~~ -!!! error TS2737: BigInt literals are not available when targeting lower than ESNext. - ~~~~~~ -!!! error TS2737: BigInt literals are not available when targeting lower than ESNext. - ~~~~~ -!!! error TS2737: BigInt literals are not available when targeting lower than ESNext. - - \ No newline at end of file