TypeScript/tests/baselines/reference/parserFunctionDeclaration7.js

10 lines
156 B
TypeScript
Raw Normal View History

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