You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: tests/baselines/reference/bigintWithLib.errors.txt
+71-57
Original file line number
Diff line number
Diff line change
@@ -1,39 +1,41 @@
1
1
bigintWithLib.ts(4,1): error TS2350: Only a void function can be called with the 'new' keyword.
2
-
bigintWithLib.ts(19,33): error TS2769: No overload matches this call.
3
-
Overload 1 of 3, '(length?: number): BigInt64Array<ArrayBuffer>', gave the following error.
4
-
Argument of type 'number[]' is not assignable to parameter of type 'number'.
5
-
Overload 2 of 3, '(array: ArrayLike<bigint> | Iterable<bigint>): BigInt64Array<ArrayBuffer>', gave the following error.
6
-
Argument of type 'number[]' is not assignable to parameter of type 'ArrayLike<bigint> | Iterable<bigint>'.
7
-
Type 'number[]' is not assignable to type 'Iterable<bigint>'.
8
-
The types returned by '[Symbol.iterator]().next(...)' are incompatible between these types.
9
-
Type 'IteratorResult<number, any>' is not assignable to type 'IteratorResult<bigint, any>'.
10
-
Type 'IteratorYieldResult<number>' is not assignable to type 'IteratorResult<bigint, any>'.
11
-
Type 'IteratorYieldResult<number>' is not assignable to type 'IteratorYieldResult<bigint>'.
12
-
Type 'number' is not assignable to type 'bigint'.
13
-
Overload 3 of 3, '(buffer: ArrayBufferLike, byteOffset?: number, length?: number): BigInt64Array<ArrayBufferLike>', gave the following error.
14
-
Argument of type 'number[]' is not assignable to parameter of type 'ArrayBufferLike'.
15
-
Type 'number[]' is missing the following properties from type 'SharedArrayBuffer': byteLength, [Symbol.species], [Symbol.toStringTag]
2
+
bigintWithLib.ts(19,34): error TS2769: No overload matches this call.
3
+
The last overload gave the following error.
4
+
Type 'number' is not assignable to type 'bigint'.
5
+
Type 'number' is not assignable to type 'bigint'.
6
+
Type 'number' is not assignable to type 'bigint'.
7
+
bigintWithLib.ts(19,37): error TS2769: No overload matches this call.
8
+
The last overload gave the following error.
9
+
Type 'number' is not assignable to type 'bigint'.
10
+
Type 'number' is not assignable to type 'bigint'.
11
+
Type 'number' is not assignable to type 'bigint'.
12
+
bigintWithLib.ts(19,40): error TS2769: No overload matches this call.
13
+
The last overload gave the following error.
14
+
Type 'number' is not assignable to type 'bigint'.
15
+
Type 'number' is not assignable to type 'bigint'.
16
+
Type 'number' is not assignable to type 'bigint'.
16
17
bigintWithLib.ts(24,13): error TS2540: Cannot assign to 'length' because it is a read-only property.
17
-
bigintWithLib.ts(31,35): error TS2769: No overload matches this call.
18
-
Overload 1 of 3, '(length?: number): BigUint64Array<ArrayBuffer>', gave the following error.
19
-
Argument of type 'number[]' is not assignable to parameter of type 'number'.
20
-
Overload 2 of 3, '(array: ArrayLike<bigint> | Iterable<bigint>): BigUint64Array<ArrayBuffer>', gave the following error.
21
-
Argument of type 'number[]' is not assignable to parameter of type 'ArrayLike<bigint> | Iterable<bigint>'.
22
-
Type 'number[]' is not assignable to type 'Iterable<bigint>'.
23
-
The types returned by '[Symbol.iterator]().next(...)' are incompatible between these types.
24
-
Type 'IteratorResult<number, any>' is not assignable to type 'IteratorResult<bigint, any>'.
25
-
Type 'IteratorYieldResult<number>' is not assignable to type 'IteratorResult<bigint, any>'.
26
-
Type 'IteratorYieldResult<number>' is not assignable to type 'IteratorYieldResult<bigint>'.
27
-
Type 'number' is not assignable to type 'bigint'.
28
-
Overload 3 of 3, '(buffer: ArrayBufferLike, byteOffset?: number, length?: number): BigUint64Array<ArrayBufferLike>', gave the following error.
29
-
Argument of type 'number[]' is not assignable to parameter of type 'ArrayBufferLike'.
30
-
Type 'number[]' is missing the following properties from type 'SharedArrayBuffer': byteLength, [Symbol.species], [Symbol.toStringTag]
18
+
bigintWithLib.ts(31,36): error TS2769: No overload matches this call.
19
+
The last overload gave the following error.
20
+
Type 'number' is not assignable to type 'bigint'.
21
+
Type 'number' is not assignable to type 'bigint'.
22
+
Type 'number' is not assignable to type 'bigint'.
23
+
bigintWithLib.ts(31,39): error TS2769: No overload matches this call.
24
+
The last overload gave the following error.
25
+
Type 'number' is not assignable to type 'bigint'.
26
+
Type 'number' is not assignable to type 'bigint'.
27
+
Type 'number' is not assignable to type 'bigint'.
28
+
bigintWithLib.ts(31,42): error TS2769: No overload matches this call.
29
+
The last overload gave the following error.
30
+
Type 'number' is not assignable to type 'bigint'.
31
+
Type 'number' is not assignable to type 'bigint'.
32
+
Type 'number' is not assignable to type 'bigint'.
31
33
bigintWithLib.ts(36,13): error TS2540: Cannot assign to 'length' because it is a read-only property.
32
34
bigintWithLib.ts(43,25): error TS2345: Argument of type 'number' is not assignable to parameter of type 'bigint'.
33
35
bigintWithLib.ts(46,26): error TS2345: Argument of type 'number' is not assignable to parameter of type 'bigint'.
34
36
35
37
36
-
==== bigintWithLib.ts (7 errors) ====
38
+
==== bigintWithLib.ts (11 errors) ====
37
39
// Test BigInt functions
38
40
let bigintVal: bigint = BigInt(123);
39
41
bigintVal = BigInt("456");
@@ -55,21 +57,27 @@ bigintWithLib.ts(46,26): error TS2345: Argument of type 'number' is not assignab
55
57
bigIntArray = new BigInt64Array(10);
56
58
bigIntArray = new BigInt64Array([1n, 2n, 3n]);
57
59
bigIntArray = new BigInt64Array([1, 2, 3]); // should error
58
-
~~~~~~~~~
60
+
~
59
61
!!! error TS2769: No overload matches this call.
60
-
!!! error TS2769: Overload 1 of 3, '(length?: number): BigInt64Array<ArrayBuffer>', gave the following error.
61
-
!!! error TS2769: Argument of type 'number[]' is not assignable to parameter of type 'number'.
62
-
!!! error TS2769: Overload 2 of 3, '(array: ArrayLike<bigint> | Iterable<bigint>): BigInt64Array<ArrayBuffer>', gave the following error.
63
-
!!! error TS2769: Argument of type 'number[]' is not assignable to parameter of type 'ArrayLike<bigint> | Iterable<bigint>'.
64
-
!!! error TS2769: Type 'number[]' is not assignable to type 'Iterable<bigint>'.
65
-
!!! error TS2769: The types returned by '[Symbol.iterator]().next(...)' are incompatible between these types.
66
-
!!! error TS2769: Type 'IteratorResult<number, any>' is not assignable to type 'IteratorResult<bigint, any>'.
67
-
!!! error TS2769: Type 'IteratorYieldResult<number>' is not assignable to type 'IteratorResult<bigint, any>'.
68
-
!!! error TS2769: Type 'IteratorYieldResult<number>' is not assignable to type 'IteratorYieldResult<bigint>'.
69
-
!!! error TS2769: Type 'number' is not assignable to type 'bigint'.
70
-
!!! error TS2769: Overload 3 of 3, '(buffer: ArrayBufferLike, byteOffset?: number, length?: number): BigInt64Array<ArrayBufferLike>', gave the following error.
71
-
!!! error TS2769: Argument of type 'number[]' is not assignable to parameter of type 'ArrayBufferLike'.
72
-
!!! error TS2769: Type 'number[]' is missing the following properties from type 'SharedArrayBuffer': byteLength, [Symbol.species], [Symbol.toStringTag]
62
+
!!! error TS2769: The last overload gave the following error.
63
+
!!! error TS2769: Type 'number' is not assignable to type 'bigint'.
64
+
!!! error TS2769: Type 'number' is not assignable to type 'bigint'.
65
+
!!! error TS2769: Type 'number' is not assignable to type 'bigint'.
66
+
!!! related TS2771 lib.es2020.bigint.d.ts:--:--: The last overload is declared here.
67
+
~
68
+
!!! error TS2769: No overload matches this call.
69
+
!!! error TS2769: The last overload gave the following error.
70
+
!!! error TS2769: Type 'number' is not assignable to type 'bigint'.
71
+
!!! error TS2769: Type 'number' is not assignable to type 'bigint'.
72
+
!!! error TS2769: Type 'number' is not assignable to type 'bigint'.
73
+
!!! related TS2771 lib.es2020.bigint.d.ts:--:--: The last overload is declared here.
74
+
~
75
+
!!! error TS2769: No overload matches this call.
76
+
!!! error TS2769: The last overload gave the following error.
77
+
!!! error TS2769: Type 'number' is not assignable to type 'bigint'.
78
+
!!! error TS2769: Type 'number' is not assignable to type 'bigint'.
79
+
!!! error TS2769: Type 'number' is not assignable to type 'bigint'.
80
+
!!! related TS2771 lib.es2020.bigint.d.ts:--:--: The last overload is declared here.
73
81
bigIntArray = new BigInt64Array(new ArrayBuffer(80));
74
82
bigIntArray = new BigInt64Array(new ArrayBuffer(80), 8);
75
83
bigIntArray = new BigInt64Array(new ArrayBuffer(80), 8, 3);
@@ -84,21 +92,27 @@ bigintWithLib.ts(46,26): error TS2345: Argument of type 'number' is not assignab
84
92
bigUintArray = new BigUint64Array(10);
85
93
bigUintArray = new BigUint64Array([1n, 2n, 3n]);
86
94
bigUintArray = new BigUint64Array([1, 2, 3]); // should error
87
-
~~~~~~~~~
95
+
~
96
+
!!! error TS2769: No overload matches this call.
97
+
!!! error TS2769: The last overload gave the following error.
98
+
!!! error TS2769: Type 'number' is not assignable to type 'bigint'.
99
+
!!! error TS2769: Type 'number' is not assignable to type 'bigint'.
100
+
!!! error TS2769: Type 'number' is not assignable to type 'bigint'.
101
+
!!! related TS2771 lib.es2020.bigint.d.ts:--:--: The last overload is declared here.
102
+
~
103
+
!!! error TS2769: No overload matches this call.
104
+
!!! error TS2769: The last overload gave the following error.
105
+
!!! error TS2769: Type 'number' is not assignable to type 'bigint'.
106
+
!!! error TS2769: Type 'number' is not assignable to type 'bigint'.
107
+
!!! error TS2769: Type 'number' is not assignable to type 'bigint'.
108
+
!!! related TS2771 lib.es2020.bigint.d.ts:--:--: The last overload is declared here.
109
+
~
88
110
!!! error TS2769: No overload matches this call.
89
-
!!! error TS2769: Overload 1 of 3, '(length?: number): BigUint64Array<ArrayBuffer>', gave the following error.
90
-
!!! error TS2769: Argument of type 'number[]' is not assignable to parameter of type 'number'.
91
-
!!! error TS2769: Overload 2 of 3, '(array: ArrayLike<bigint> | Iterable<bigint>): BigUint64Array<ArrayBuffer>', gave the following error.
92
-
!!! error TS2769: Argument of type 'number[]' is not assignable to parameter of type 'ArrayLike<bigint> | Iterable<bigint>'.
93
-
!!! error TS2769: Type 'number[]' is not assignable to type 'Iterable<bigint>'.
94
-
!!! error TS2769: The types returned by '[Symbol.iterator]().next(...)' are incompatible between these types.
95
-
!!! error TS2769: Type 'IteratorResult<number, any>' is not assignable to type 'IteratorResult<bigint, any>'.
96
-
!!! error TS2769: Type 'IteratorYieldResult<number>' is not assignable to type 'IteratorResult<bigint, any>'.
97
-
!!! error TS2769: Type 'IteratorYieldResult<number>' is not assignable to type 'IteratorYieldResult<bigint>'.
98
-
!!! error TS2769: Type 'number' is not assignable to type 'bigint'.
99
-
!!! error TS2769: Overload 3 of 3, '(buffer: ArrayBufferLike, byteOffset?: number, length?: number): BigUint64Array<ArrayBufferLike>', gave the following error.
100
-
!!! error TS2769: Argument of type 'number[]' is not assignable to parameter of type 'ArrayBufferLike'.
101
-
!!! error TS2769: Type 'number[]' is missing the following properties from type 'SharedArrayBuffer': byteLength, [Symbol.species], [Symbol.toStringTag]
111
+
!!! error TS2769: The last overload gave the following error.
112
+
!!! error TS2769: Type 'number' is not assignable to type 'bigint'.
113
+
!!! error TS2769: Type 'number' is not assignable to type 'bigint'.
114
+
!!! error TS2769: Type 'number' is not assignable to type 'bigint'.
115
+
!!! related TS2771 lib.es2020.bigint.d.ts:--:--: The last overload is declared here.
102
116
bigUintArray = new BigUint64Array(new ArrayBuffer(80));
103
117
bigUintArray = new BigUint64Array(new ArrayBuffer(80), 8);
104
118
bigUintArray = new BigUint64Array(new ArrayBuffer(80), 8, 3);
0 commit comments