TypeScript/tests/baselines/reference/parserX_ArrowFunction4.types
2014-08-15 14:37:48 -07:00

11 lines
235 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
};