-
Notifications
You must be signed in to change notification settings - Fork 13k
Closed
Labels
BugA bug in TypeScriptA bug in TypeScriptFixedA PR has been merged for this issueA PR has been merged for this issue
Milestone
Description
module M{
export class C { }
export module C {
export var C = M.C
}}
Expected:
var M;
(function (M) {
var C = (function () {
function C() { }
return C;
})();
M.C = C;
(function (_C) {
_C.C = M.C;
})(M.C || (M.C = {}));
var C = M.C;
})(M || (M = {}));
Actual:
var M;
(function (M) {
var C = (function () {
function C() { }
return C;
})();
M.C = C;
(function (C) {
C.C = M.C;
})(M.C || (M.C = {}));
var C = M.C;
})(M || (M = {}));
Metadata
Metadata
Assignees
Labels
BugA bug in TypeScriptA bug in TypeScriptFixedA PR has been merged for this issueA PR has been merged for this issue