TypeScript/tests/baselines/reference/functionType.js
2014-07-12 17:30:19 -07:00

14 lines
209 B
JavaScript

//// [functionType.ts]
function salt() {}
salt.apply("hello", []);
(new Function("return 5"))();
//// [functionType.js]
function salt() {
}
salt.apply("hello", []);
(new Function("return 5"))();