TypeScript/tests/cases/compiler/moduleNewExportBug.ts
2014-07-12 17:30:19 -07:00

13 lines
183 B
TypeScript

module mod1 {
interface mInt {
new (bar:any):any;
foo (bar:any):any;
}
class C { public moo() {}}
}
var c : mod1.C; // ERROR: C should not be visible