TypeScript/tests/baselines/reference/classExpressionWithStaticPropertiesES62.types
2015-06-18 13:56:21 -07:00

10 lines
234 B
Plaintext

=== tests/cases/compiler/classExpressionWithStaticPropertiesES62.ts ===
var v = class C { static a = 1; static b };
>v : typeof C
>class C { static a = 1; static b } : typeof C
>C : typeof C
>a : number
>1 : number
>b : any