TypeScript/tests/cases/compiler/constDeclarations-scopes2.ts
2014-10-14 17:37:46 -07:00

16 lines
196 B
TypeScript

// @target: ES6
// global
const c = "string";
var n: number;
var b: boolean;
// for scope
for (const c = 0; c < 10; n = c ) {
// for block
const c = false;
b = c;
}