TypeScript/tests/cases/compiler/letDeclarations-es5-1.ts
2014-11-18 23:34:26 -08:00

7 lines
180 B
TypeScript

// @target: ES5
let l1;
let l2: number;
let l3, l4, l5 :string, l6;
let l7 = false;
let l8: number = 23;
let l9 = 0, l10 :string = "", l11 = null;