TypeScript/tests/baselines/reference/systemModule6.types

13 lines
163 B
Plaintext

=== tests/cases/compiler/systemModule6.ts ===
export class C {}
>C : C
function foo() {
>foo : () => void
new C();
>new C() : C
>C : typeof C
}