TypeScript/tests/baselines/reference/ambientClassDeclarationWithExtends.types

8 lines
326 B
Text

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