TypeScript/tests/baselines/reference/functionType.js

14 lines
209 B
JavaScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [functionType.ts]
function salt() {}
salt.apply("hello", []);
(new Function("return 5"))();
//// [functionType.js]
function salt() {
}
salt.apply("hello", []);
(new Function("return 5"))();