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

27 lines
877 B
Text
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/conformance/internalModules/DeclarationMerging/ClassAndModuleThatMergeWithStaticVariableAndExportedVarThatShareAName.ts (2 errors) ====
class Point {
constructor(public x: number, public y: number) { }
static Origin: Point = { x: 0, y: 0 };
}
module Point {
export var Origin = ""; //expected duplicate identifier error
~~~~~~
!!! error TS2300: Duplicate identifier 'Origin'.
2014-07-13 01:04:16 +02:00
}
module A {
export class Point {
constructor(public x: number, public y: number) { }
static Origin: Point = { x: 0, y: 0 };
}
export module Point {
export var Origin = ""; //expected duplicate identifier error
~~~~~~
!!! error TS2300: Duplicate identifier 'Origin'.
2014-07-13 01:04:16 +02:00
}
}