TypeScript/tests/cases/conformance/es6/arrowFunction/emitArrowFunction.ts

8 lines
262 B
TypeScript
Raw Normal View History

2015-01-07 20:54:22 +01:00
// @target:es5
var f1 = () => { }
var f2 = (x: string, y: string) => { }
var f3 = (x: string, y: number, ...rest) => { }
var f4 = (x: string, y: number, z = 10) => { }
function foo(func: () => boolean) { }
foo(() => true);
foo(() => { return false; });