TypeScript/tests/baselines/reference/FunctionDeclaration7.js

10 lines
144 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [FunctionDeclaration7.ts]
module M {
function foo();
}
//// [FunctionDeclaration7.js]
var M;
(function (M) {
})(M || (M = {}));