TypeScript/tests/baselines/reference/constDeclarations-es5.types
2016-09-01 14:25:44 -07:00

19 lines
272 B
Plaintext

=== tests/cases/compiler/constDeclarations-es5.ts ===
const z7 = false;
>z7 : false
>false : false
const z8: number = 23;
>z8 : number
>23 : 23
const z9 = 0, z10 :string = "", z11 = null;
>z9 : 0
>0 : 0
>z10 : string
>"" : ""
>z11 : any
>null : null