TypeScript/tests/baselines/reference/clodulesDerivedClasses.errors.txt

34 lines
1.1 KiB
Text
Raw Normal View History

tests/cases/compiler/clodulesDerivedClasses.ts(9,7): error TS2417: Class static side 'typeof Path' incorrectly extends base class static side 'typeof Shape'.
Types of property 'Utils' are incompatible.
2014-12-30 20:06:56 +01:00
Type 'Path.Utils' is not assignable to type 'Shape.Utils'.
Property 'convert' is missing in type 'typeof Utils'.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/clodulesDerivedClasses.ts (1 errors) ====
class Shape {
id: number;
}
module Shape.Utils {
export function convert(): Shape { return null;}
}
class Path extends Shape {
~~~~
!!! error TS2417: Class static side 'typeof Path' incorrectly extends base class static side 'typeof Shape'.
!!! error TS2417: Types of property 'Utils' are incompatible.
2014-12-30 20:06:56 +01:00
!!! error TS2417: Type 'Path.Utils' is not assignable to type 'Shape.Utils'.
!!! error TS2417: Property 'convert' is missing in type 'typeof Utils'.
2014-07-13 01:04:16 +02:00
name: string;
}
module Path.Utils {
export function convert2(): Path {
return null;
}
}