TypeScript/tests/baselines/reference/objectLitTargetTypeCallSite.errors.txt
2014-07-12 17:30:19 -07:00

8 lines
No EOL
281 B
Text

==== tests/cases/compiler/objectLitTargetTypeCallSite.ts (1 errors) ====
function process( x: {a:number; b:string;}) {
return x.a;
}
process({a:true,b:"y"});
~~~~~~~~~~~~~~~~~~~~~~~
!!! Supplied parameters do not match any signature of call target.