TypeScript/tests/cases/compiler/fatarrowfunctionsOptionalArgsErrors2.ts

4 lines
89 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
var tt1 = (a, (b, c)) => a+b+c;
var tt2 = ((a), b, c) => a+b+c;
var tt3 = ((a)) => a;