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

22 lines
325 B
Plaintext

=== tests/cases/conformance/es6/classDeclaration/emitClassDeclarationWithStaticPropertyAssignmentInES6.ts ===
class C {
>C : C
static z: string = "Foo";
>z : string
>"Foo" : string
}
class D {
>D : D
x = 20000;
>x : number
>20000 : number
static b = true;
>b : boolean
>true : boolean
}