TypeScript/tests/baselines/reference/parserX_ArrowFunction4.types
2014-08-27 16:58:31 -07:00

9 lines
233 B
Plaintext

=== tests/cases/conformance/parser/ecmascript5/ErrorRecovery/ArrowFunctions/parserX_ArrowFunction4.ts ===
var v = (a, b) => {
>v : (a: any, b: any) => void
>(a, b) => { } : (a: any, b: any) => void
>a : any
>b : any
};