File: constDeclarations-invalidContexts.ts

package info (click to toggle)
node-typescript 3.3.3333-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 324,548 kB
  • sloc: makefile: 6; sh: 3
file content (34 lines) | stat: -rw-r--r-- 549 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// @allowUnreachableCode: true
// @target: ES6

// Errors, const must be defined inside a block
if (true) 
    const c1 = 0;
else 
    const c2 = 0;

while (true) 
    const c3 = 0;

do 
    const c4 = 0;
while (true);

var obj;
with (obj) 
    const c5 = 0;  // No  Error will be reported here since we turn off all type checking

for (var i = 0; i < 10; i++)
    const c6 = 0;

for (var i2 in {}) 
    const c7 = 0;

if (true) 
    label: const c8 = 0;

while (false)
    label2: label3: label4: const c9 = 0;