File: objectLiteralContextualTyping.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 (37 lines) | stat: -rw-r--r-- 1,620 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
30
31
32
33
34
35
36
37
tests/cases/conformance/expressions/contextualTyping/objectLiteralContextualTyping.ts(29,5): error TS2403: Subsequent variable declarations must have the same type.  Variable 'b' must be of type 'unknown', but here has type '{}'.


==== tests/cases/conformance/expressions/contextualTyping/objectLiteralContextualTyping.ts (1 errors) ====
    // In a contextually typed object literal, each property value expression is contextually typed by
    //      the type of the property with a matching name in the contextual type, if any, or otherwise
    //      for a numerically named property, the numeric index type of the contextual type, if any, or otherwise
    //      the string index type of the contextual type, if any.
    
    interface Item {
        name: string;
        description?: string;
    }
    
    declare function foo(item: Item): string;
    declare function foo(item: any): number;
    
    var x = foo({ name: "Sprocket" });
    var x: string;
    
    var y = foo({ name: "Sprocket", description: "Bumpy wheel" });
    var y: string;
    
    var z = foo({ name: "Sprocket", description: false });
    var z: number;
    
    var w = foo({ a: 10 });
    var w: number;
    
    declare function bar<T>(param: { x?: T }): T;
    
    var b = bar({});
    var b: {};
        ~
!!! error TS2403: Subsequent variable declarations must have the same type.  Variable 'b' must be of type 'unknown', but here has type '{}'.
!!! related TS6203 tests/cases/conformance/expressions/contextualTyping/objectLiteralContextualTyping.ts:28:5: 'b' was also declared here.