TypeScript/tests/cases/conformance/es6/arrowFunction/emitArrowFunctionAsIsES6.ts
2015-01-28 16:17:13 -08:00

5 lines
99 B
TypeScript

// @target:ES6
var arrow1 = a => { };
var arrow2 = (a) => { };
var arrow3 = (a, b) => { };