TypeScript/tests/baselines/reference/arrowFunctionWithObjectLiteralBody1.types

8 lines
304 B
Text

=== tests/cases/compiler/arrowFunctionWithObjectLiteralBody1.ts ===
var v = a => <any>{}
>v : (a: any) => any, Symbol(v,Decl(arrowFunctionWithObjectLiteralBody1.ts,0,3))
>a => <any>{} : (a: any) => any
>a : any, Symbol(a,Decl(arrowFunctionWithObjectLiteralBody1.ts,0,7))
><any>{} : any
>{} : {}