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

19 lines
294 B
Plaintext

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