TypeScript/tests/baselines/reference/ambientClassDeclarationWithExtends.symbols
2015-04-15 16:44:20 -07:00

9 lines
326 B
Plaintext

=== tests/cases/compiler/ambientClassDeclarationWithExtends.ts ===
declare class A { }
>A : Symbol(A, Decl(ambientClassDeclarationWithExtends.ts, 0, 0))
declare class B extends A { }
>B : Symbol(B, Decl(ambientClassDeclarationWithExtends.ts, 0, 19))
>A : Symbol(A, Decl(ambientClassDeclarationWithExtends.ts, 0, 0))