File: constDeclarations-invalidContexts.errors.txt

package info (click to toggle)
node-typescript 2.1.5-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 203,952 kB
  • ctags: 52,987
  • sloc: sh: 11; makefile: 5
file content (63 lines) | stat: -rw-r--r-- 2,947 bytes parent folder | download | duplicates (2)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
tests/cases/compiler/constDeclarations-invalidContexts.ts(4,5): error TS1156: 'const' declarations can only be declared inside a block.
tests/cases/compiler/constDeclarations-invalidContexts.ts(6,5): error TS1156: 'const' declarations can only be declared inside a block.
tests/cases/compiler/constDeclarations-invalidContexts.ts(9,5): error TS1156: 'const' declarations can only be declared inside a block.
tests/cases/compiler/constDeclarations-invalidContexts.ts(12,5): error TS1156: 'const' declarations can only be declared inside a block.
tests/cases/compiler/constDeclarations-invalidContexts.ts(16,1): error TS2410: The 'with' statement is not supported. All symbols in a 'with' block will have type 'any'.
tests/cases/compiler/constDeclarations-invalidContexts.ts(20,5): error TS1156: 'const' declarations can only be declared inside a block.
tests/cases/compiler/constDeclarations-invalidContexts.ts(23,5): error TS1156: 'const' declarations can only be declared inside a block.
tests/cases/compiler/constDeclarations-invalidContexts.ts(26,12): error TS1156: 'const' declarations can only be declared inside a block.
tests/cases/compiler/constDeclarations-invalidContexts.ts(29,29): error TS1156: 'const' declarations can only be declared inside a block.


==== tests/cases/compiler/constDeclarations-invalidContexts.ts (9 errors) ====
    
    // Errors, const must be defined inside a block
    if (true) 
        const c1 = 0;
        ~~~~~~~~~~~~~
!!! error TS1156: 'const' declarations can only be declared inside a block.
    else 
        const c2 = 0;
        ~~~~~~~~~~~~~
!!! error TS1156: 'const' declarations can only be declared inside a block.
    
    while (true) 
        const c3 = 0;
        ~~~~~~~~~~~~~
!!! error TS1156: 'const' declarations can only be declared inside a block.
    
    do 
        const c4 = 0;
        ~~~~~~~~~~~~~
!!! error TS1156: 'const' declarations can only be declared inside a block.
    while (true);
    
    var obj;
    with (obj) 
    ~~~~~~~~~~
!!! error TS2410: The 'with' statement is not supported. All symbols in a 'with' block will have type 'any'.
        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;
        ~~~~~~~~~~~~~
!!! error TS1156: 'const' declarations can only be declared inside a block.
    
    for (var i2 in {}) 
        const c7 = 0;
        ~~~~~~~~~~~~~
!!! error TS1156: 'const' declarations can only be declared inside a block.
    
    if (true) 
        label: const c8 = 0;
               ~~~~~~~~~~~~~
!!! error TS1156: 'const' declarations can only be declared inside a block.
    
    while (false)
        label2: label3: label4: const c9 = 0;
                                ~~~~~~~~~~~~~
!!! error TS1156: 'const' declarations can only be declared inside a block.