TypeScript/tests/baselines/reference/ArrowFunction4.js
2014-08-25 10:55:22 -07:00

9 lines
113 B
TypeScript

//// [ArrowFunction4.ts]
var v = (a, b) => {
};
//// [ArrowFunction4.js]
var v = function (a, b) {
};