TypeScript/tests/baselines/reference/ArrowFunction4.js

9 lines
113 B
TypeScript
Raw Normal View History

2014-08-22 03:39:46 +02:00
//// [ArrowFunction4.ts]
var v = (a, b) => {
};
//// [ArrowFunction4.js]
var v = function (a, b) {
};