You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: tests/baselines/reference/enumAssignmentCompat6.errors.txt
+21-1
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,17 @@
1
+
f.ts(28,5): error TS2322: Type 'b.DiagnosticCategory' is not assignable to type 'a.DiagnosticCategory'.
2
+
The values of 'DiagnosticCategory.Warning' differ in their declarations, where '0' was expected but '"Warning"' was given.
3
+
f.ts(29,5): error TS2322: Type 'a.DiagnosticCategory' is not assignable to type 'b.DiagnosticCategory'.
4
+
The values of 'DiagnosticCategory.Warning' differ in their declarations, where '"Warning"' was expected but '0' was given.
1
5
f.ts(33,5): error TS2322: Type 'DiagnosticCategory' is not assignable to type 'DiagnosticCategory2'.
2
6
f.ts(34,5): error TS2322: Type 'DiagnosticCategory2' is not assignable to type 'DiagnosticCategory'.
3
7
f.ts(54,14): error TS1252: Function declarations are not allowed inside blocks in strict mode when targeting 'ES3' or 'ES5'. Modules are automatically in strict mode.
8
+
f.ts(55,9): error TS2322: Type 'DiagnosticCategory' is not assignable to type 'import("f").DiagnosticCategory'.
9
+
The values of 'DiagnosticCategory.Warning' differ in their declarations, where '0' was expected but '"Warning"' was given.
10
+
f.ts(56,9): error TS2322: Type 'import("f").DiagnosticCategory' is not assignable to type 'DiagnosticCategory'.
11
+
The values of 'DiagnosticCategory.Warning' differ in their declarations, where '"Warning"' was expected but '0' was given.
4
12
5
13
6
-
==== f.ts (3 errors) ====
14
+
==== f.ts (7 errors) ====
7
15
// @filename a.ts
8
16
namespace a {
9
17
export enum DiagnosticCategory {
@@ -32,7 +40,13 @@ f.ts(54,14): error TS1252: Function declarations are not allowed inside blocks i
32
40
33
41
function f(x: a.DiagnosticCategory, y: b.DiagnosticCategory) {
34
42
x = y;
43
+
~
44
+
!!! error TS2322: Type 'b.DiagnosticCategory' is not assignable to type 'a.DiagnosticCategory'.
45
+
!!! error TS2322: The values of 'DiagnosticCategory.Warning' differ in their declarations, where '0' was expected but '"Warning"' was given.
35
46
y = x;
47
+
~
48
+
!!! error TS2322: Type 'a.DiagnosticCategory' is not assignable to type 'b.DiagnosticCategory'.
49
+
!!! error TS2322: The values of 'DiagnosticCategory.Warning' differ in their declarations, where '"Warning"' was expected but '0' was given.
36
50
}
37
51
38
52
function g(x: a.DiagnosticCategory2, y: b.DiagnosticCategory) {
@@ -65,6 +79,12 @@ f.ts(54,14): error TS1252: Function declarations are not allowed inside blocks i
65
79
~
66
80
!!! error TS1252: Function declarations are not allowed inside blocks in strict mode when targeting 'ES3' or 'ES5'. Modules are automatically in strict mode.
67
81
x = y;
82
+
~
83
+
!!! error TS2322: Type 'DiagnosticCategory' is not assignable to type 'import("f").DiagnosticCategory'.
84
+
!!! error TS2322: The values of 'DiagnosticCategory.Warning' differ in their declarations, where '0' was expected but '"Warning"' was given.
68
85
y = x;
86
+
~
87
+
!!! error TS2322: Type 'import("f").DiagnosticCategory' is not assignable to type 'DiagnosticCategory'.
88
+
!!! error TS2322: The values of 'DiagnosticCategory.Warning' differ in their declarations, where '"Warning"' was expected but '0' was given.
0 commit comments