TypeScript/tests/baselines/reference/classDeclarationMergedInModuleWithContinuation.types

27 lines
364 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/classDeclarationMergedInModuleWithContinuation.ts ===
module M {
>M : typeof M
2014-08-15 23:33:16 +02:00
export class N { }
>N : N
2014-08-15 23:33:16 +02:00
export module N {
>N : typeof N
2014-08-15 23:33:16 +02:00
export var v = 0;
>v : number
2015-04-13 21:36:11 +02:00
>0 : number
2014-08-15 23:33:16 +02:00
}
}
module M {
>M : typeof M
2014-08-15 23:33:16 +02:00
export class O extends M.N {
>O : O
>M.N : any
>M : typeof M
>N : N
2014-08-15 23:33:16 +02:00
}
}