File tree 2 files changed +8
-0
lines changed
2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -838,6 +838,7 @@ export class Compiler extends DiagnosticEmitter {
838
838
839
839
// just traverse members below
840
840
case ElementKind . ENUM :
841
+ case ElementKind . INTERFACE_PROTOTYPE :
841
842
case ElementKind . NAMESPACE :
842
843
case ElementKind . TYPEDEFINITION :
843
844
case ElementKind . INDEXSIGNATURE : break ;
@@ -907,6 +908,7 @@ export class Compiler extends DiagnosticEmitter {
907
908
if ( propertyInstance ) this . compileProperty ( propertyInstance ) ;
908
909
break ;
909
910
}
911
+ case ElementKind . INTERFACE_PROTOTYPE :
910
912
case ElementKind . NAMESPACE :
911
913
case ElementKind . TYPEDEFINITION :
912
914
case ElementKind . ENUMVALUE :
Original file line number Diff line number Diff line change @@ -58,3 +58,9 @@ export namespace outer {
58
58
}
59
59
60
60
export { renamed_mul } from "./export" ;
61
+
62
+ // interfaces (should not error)
63
+ export interface Iface { }
64
+ export namespace outer {
65
+ export interface Iface { }
66
+ }
You can’t perform that action at this time.
0 commit comments