TypeScript/tests/baselines/reference/ambientClassDeclarationWithExtends.symbols

9 lines
326 B
Plaintext
Raw Normal View History

=== 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))