TypeScript/tests/baselines/reference/bind1.js

18 lines
333 B
JavaScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [bind1.ts]
module M {
export class C implements I {} // this should be an unresolved symbol I error
}
//// [bind1.js]
var M;
(function (M) {
var C = (function () {
function C() {
}
return C;
})();
M.C = C; // this should be an unresolved symbol I error
2014-07-13 01:04:16 +02:00
})(M || (M = {}));