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

4 lines
89 B
TypeScript

var tt1 = (a, (b, c)) => a+b+c;
var tt2 = ((a), b, c) => a+b+c;
var tt3 = ((a)) => a;