TypeScript/tests/baselines/reference/objectLiteralFunctionArgContextualTyping2.errors.txt
2014-07-24 19:39:50 -07:00

32 lines
1.6 KiB
Plaintext

==== tests/cases/compiler/objectLiteralFunctionArgContextualTyping2.ts (6 errors) ====
interface I2 {
value: string;
doStuff: (t: string) => string;
}
function f2(args: I2) { }
f2({ hello: 1 })
~~~~~~~~~~~~
!!! Argument of type '{ hello: number; }' is not assignable to parameter of type 'I2'.
!!! Property 'value' is missing in type '{ hello: number; }'.
f2({ value: '' })
~~~~~~~~~~~~~
!!! Argument of type '{ value: string; }' is not assignable to parameter of type 'I2'.
!!! Property 'doStuff' is missing in type '{ value: string; }'.
f2({ value: '', what: 1 })
~~~~~~~~~~~~~~~~~~~~~~
!!! Argument of type '{ value: string; what: number; }' is not assignable to parameter of type 'I2'.
!!! Property 'doStuff' is missing in type '{ value: string; what: number; }'.
f2({ toString: (s) => s })
~~~~~~~~~~~~~~~~~~~~~~
!!! Argument of type '{ toString: (s: any) => any; }' is not assignable to parameter of type 'I2'.
!!! Property 'value' is missing in type '{ toString: (s: any) => any; }'.
f2({ toString: (s: string) => s })
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
!!! Argument of type '{ toString: (s: string) => string; }' is not assignable to parameter of type 'I2'.
!!! Property 'value' is missing in type '{ toString: (s: string) => string; }'.
f2({ value: '', toString: (s) => s.uhhh })
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
!!! Argument of type '{ value: string; toString: (s: any) => any; }' is not assignable to parameter of type 'I2'.
!!! Property 'doStuff' is missing in type '{ value: string; toString: (s: any) => any; }'.