Fixed up flags on test cases and stray newline.

This commit is contained in:
Daniel Rosenwasser 2018-11-12 14:05:01 -08:00
parent 146afddae1
commit e4bb1973ed
6 changed files with 0 additions and 6 deletions

View file

@ -1,5 +1,4 @@
// @target: esnext
// @experimentalBigInt: true
// @filename: a.ts
interface BigIntIndex<E> {

View file

@ -1,4 +1,3 @@
// @experimentalBigInt: true
// @target: esnext
// @declaration: true

View file

@ -1,4 +1,3 @@
// @experimentalBigInt: true
// @target: es5
// Every line should error because these builtins are not declared

View file

@ -1,4 +1,3 @@
// @experimentalBigInt: true
// @target: esnext
// Cannot mix bigints and numbers

View file

@ -1,4 +1,3 @@
// @experimentalBigInt: true
// @target: esnext
// All bases should allow "n" suffix

View file

@ -5,4 +5,3 @@ 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