1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
//// [tests/cases/compiler/exportDeclarationInInternalModule.ts] ////
=== exportDeclarationInInternalModule.ts ===
class Bbb {
>Bbb : Bbb
}
class Aaa extends Bbb { }
>Aaa : Aaa
>Bbb : Bbb
module Aaa {
>Aaa : typeof Aaa
export class SomeType { }
>SomeType : SomeType
}
module Bbb {
>Bbb : typeof Bbb
export class SomeType { }
>SomeType : SomeType
export * from Aaa; // this line causes the nullref
>Aaa : any
}
var a: Bbb.SomeType;
>a : Bbb.SomeType
>Bbb : any
|