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

10 lines
144 B
TypeScript

//// [FunctionDeclaration7.ts]
module M {
function foo();
}
//// [FunctionDeclaration7.js]
var M;
(function (M) {
})(M || (M = {}));