TypeScript/tests/cases/compiler/objectLitTargetTypeCallSite.ts
2014-07-12 17:30:19 -07:00

5 lines
No EOL
90 B
TypeScript

function process( x: {a:number; b:string;}) {
return x.a;
}
process({a:true,b:"y"});