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
|
=== tests/cases/compiler/enumBasics1.ts ===
enum E {
>E : E
A = 1,
>A : E.A
>1 : 1
B,
>B : E.B
C
>C : E.C
}
/*
var a: E;
var b = E["B"]; // shouldn't error
function foo(e: E) {}
foo(a); // shouldn't error
class C {
public e: E;
public m(): E { return this.e; } // shouldn't error
}
var e = E; // shouldn't error
*/
E.A.A; // should error
>E.A.A : any
>E.A : E.A
>E : typeof E
>A : E.A
>A : any
enum E2 {
>E2 : E2
A,
>A : E2.A
B,
>B : E2.B
}
enum E2 { // should error for continued autonumbering
>E2 : E2
C,
>C : E2.A
D,
>D : E2.B
}
|