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

18 lines
286 B
JavaScript

//// [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;
})(M || (M = {}));