TypeScript/tests/baselines/reference/functionType.js

13 lines
208 B
TypeScript
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() { }
2014-07-13 01:04:16 +02:00
salt.apply("hello", []);
(new Function("return 5"))();