TypeScript/tests/baselines/reference/enumAssignmentCompat.errors.txt
2014-09-11 16:11:08 -07:00

51 lines
1.2 KiB
Plaintext

==== tests/cases/compiler/enumAssignmentCompat.ts (5 errors) ====
module W {
export class D { }
}
enum W {
a, b, c,
}
interface WStatic {
a: W;
b: W;
c: W;
}
var x: WStatic = W;
var y: typeof W = W;
var z: number = W; // error
~
!!! error TS2323: Type 'typeof W' is not assignable to type 'number'.
var a: number = W.a;
var b: typeof W = W.a; // error
~
!!! error TS2322: Type 'W' is not assignable to type 'typeof W':
!!! error TS2322: Property 'D' is missing in type 'Number'.
var c: typeof W.a = W.a;
var d: typeof W = 3; // error
~
!!! error TS2323: Type 'number' is not assignable to type 'typeof W'.
var e: typeof W.a = 4;
var f: WStatic = W.a; // error
~
!!! error TS2322: Type 'W' is not assignable to type 'WStatic':
!!! error TS2322: Property 'a' is missing in type 'Number'.
var g: WStatic = 5; // error
~
!!! error TS2323: Type 'number' is not assignable to type 'WStatic'.
var h: W = 3;
var i: W = W.a;
i = W.a;
W.D;
var p: W.D;