File: assignmentCompat1.errors.txt

package info (click to toggle)
node-typescript 5.0.4%2Bds1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 459,140 kB
  • sloc: javascript: 1,972,754; makefile: 6; sh: 1
file content (29 lines) | stat: -rw-r--r-- 1,664 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
tests/cases/compiler/assignmentCompat1.ts(4,1): error TS2741: Property 'one' is missing in type '{ [index: string]: any; }' but required in type '{ one: number; }'.
tests/cases/compiler/assignmentCompat1.ts(6,1): error TS2741: Property 'one' is missing in type '{ [index: number]: any; }' but required in type '{ one: number; }'.
tests/cases/compiler/assignmentCompat1.ts(8,1): error TS2322: Type 'string' is not assignable to type '{ [index: string]: any; }'.
tests/cases/compiler/assignmentCompat1.ts(10,1): error TS2322: Type 'boolean' is not assignable to type '{ [index: number]: any; }'.


==== tests/cases/compiler/assignmentCompat1.ts (4 errors) ====
    var x = { one: 1 };
    var y: { [index: string]: any };
    var z: { [index: number]: any };
    x = y;  // Error
    ~
!!! error TS2741: Property 'one' is missing in type '{ [index: string]: any; }' but required in type '{ one: number; }'.
!!! related TS2728 tests/cases/compiler/assignmentCompat1.ts:1:11: 'one' is declared here.
    y = x;  // Ok because index signature type is any
    x = z;  // Error
    ~
!!! error TS2741: Property 'one' is missing in type '{ [index: number]: any; }' but required in type '{ one: number; }'.
!!! related TS2728 tests/cases/compiler/assignmentCompat1.ts:1:11: 'one' is declared here.
    z = x;  // Ok because index signature type is any
    y = "foo"; // Error
    ~
!!! error TS2322: Type 'string' is not assignable to type '{ [index: string]: any; }'.
    z = "foo"; // OK, string has numeric indexer
    z = false; // Error
    ~
!!! error TS2322: Type 'boolean' is not assignable to type '{ [index: number]: any; }'.