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/clodulesDerivedClasses.errors.txt
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
tests/cases/compiler/clodulesDerivedClasses.ts(9,7): error TS2417: Class static side 'typeof Path' incorrectly extends base class static side 'typeof Shape'.
2
2
Types of property 'Utils' are incompatible.
3
-
Type 'typeof Utils' is not assignable to type 'typeof Utils'.
3
+
Type 'typeof Path.Utils' is not assignable to type 'typeof Shape.Utils'.
4
4
Property 'convert' is missing in type 'typeof Utils'.
5
5
6
6
@@ -17,7 +17,7 @@ tests/cases/compiler/clodulesDerivedClasses.ts(9,7): error TS2417: Class static
17
17
~~~~
18
18
!!! error TS2417: Class static side 'typeof Path' incorrectly extends base class static side 'typeof Shape'.
19
19
!!! error TS2417: Types of property 'Utils' are incompatible.
20
-
!!! error TS2417: Type 'typeof Utils' is not assignable to type 'typeof Utils'.
20
+
!!! error TS2417: Type 'typeof Path.Utils' is not assignable to type 'typeof Shape.Utils'.
21
21
!!! error TS2417: Property 'convert' is missing in type 'typeof Utils'.
tests/cases/compiler/differentTypesWithSameName.ts(16,15): error TS2345: Argument of type 'variable' is not assignable to parameter of type 'm.variable'.
tests/cases/conformance/statements/VariableStatements/everyTypeWithAnnotationAndInvalidInitializer.ts(50,5): error TS2322: Type 'typeof N' is not assignable to type 'typeof M'.
27
27
Types of property 'A' are incompatible.
28
-
Type 'typeof A' is not assignable to type 'typeof A'.
29
-
Type 'A' is not assignable to type 'A'.
28
+
Type 'typeof N.A' is not assignable to type 'typeof M.A'.
29
+
Type 'N.A' is not assignable to type 'M.A'.
30
30
Property 'name' is missing in type 'A'.
31
-
tests/cases/conformance/statements/VariableStatements/everyTypeWithAnnotationAndInvalidInitializer.ts(51,5): error TS2322: Type 'A' is not assignable to type 'A'.
31
+
tests/cases/conformance/statements/VariableStatements/everyTypeWithAnnotationAndInvalidInitializer.ts(51,5): error TS2322: Type 'N.A' is not assignable to type 'M.A'.
32
32
tests/cases/conformance/statements/VariableStatements/everyTypeWithAnnotationAndInvalidInitializer.ts(52,5): error TS2322: Type '(x: number) => boolean' is not assignable to type '(x: number) => string'.
33
33
Type 'boolean' is not assignable to type 'string'.
0 commit comments