TypeScript/tests/baselines/reference/ArrowFunction4.types
2015-04-15 16:44:20 -07:00

9 lines
225 B
Plaintext

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