Skip to content

Commit 9404e06

Browse files
committed
Accept new baselines
1 parent f0b8742 commit 9404e06

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

tests/baselines/reference/bigintWithLib.errors.txt

-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ tests/cases/compiler/bigintWithLib.ts(31,35): error TS2769: No overload matches
2020
Argument of type 'number[]' is not assignable to parameter of type 'Iterable<bigint>'.
2121
Overload 3 of 3, '(buffer: ArrayBufferLike, byteOffset?: number, length?: number): BigUint64Array', gave the following error.
2222
Argument of type 'number[]' is not assignable to parameter of type 'ArrayBufferLike'.
23-
Type 'number[]' is not assignable to type 'SharedArrayBuffer'.
2423
tests/cases/compiler/bigintWithLib.ts(36,13): error TS2540: Cannot assign to 'length' because it is a read-only property.
2524
tests/cases/compiler/bigintWithLib.ts(43,25): error TS2345: Argument of type 'number' is not assignable to parameter of type 'bigint'.
2625
tests/cases/compiler/bigintWithLib.ts(46,26): error TS2345: Argument of type 'number' is not assignable to parameter of type 'bigint'.
@@ -84,7 +83,6 @@ tests/cases/compiler/bigintWithLib.ts(46,26): error TS2345: Argument of type 'nu
8483
!!! error TS2769: Argument of type 'number[]' is not assignable to parameter of type 'Iterable<bigint>'.
8584
!!! error TS2769: Overload 3 of 3, '(buffer: ArrayBufferLike, byteOffset?: number, length?: number): BigUint64Array', gave the following error.
8685
!!! error TS2769: Argument of type 'number[]' is not assignable to parameter of type 'ArrayBufferLike'.
87-
!!! error TS2769: Type 'number[]' is not assignable to type 'SharedArrayBuffer'.
8886
bigUintArray = new BigUint64Array(new ArrayBuffer(80));
8987
bigUintArray = new BigUint64Array(new ArrayBuffer(80), 8);
9088
bigUintArray = new BigUint64Array(new ArrayBuffer(80), 8, 3);

0 commit comments

Comments
 (0)