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

20 lines
813 B
Text
Raw Normal View History

2014-10-01 02:15:18 +02:00
tests/cases/compiler/memberOverride.ts(4,5): error TS2300: Duplicate identifier 'a'.
tests/cases/compiler/memberOverride.ts(5,5): error TS2300: Duplicate identifier 'a'.
2014-11-05 21:26:03 +01:00
tests/cases/compiler/memberOverride.ts(8,5): error TS2322: Type 'string' is not assignable to type 'number'.
2014-10-01 02:15:18 +02:00
==== tests/cases/compiler/memberOverride.ts (3 errors) ====
2014-07-13 01:04:16 +02:00
// An object initialiser accepts the first definition for the same property with a different type signature
// Should compile, since the second declaration of a overrides the first
var x = {
a: "",
~
2014-10-01 02:15:18 +02:00
!!! error TS2300: Duplicate identifier 'a'.
a: 5
2014-10-01 20:27:20 +02:00
~
!!! error TS2300: Duplicate identifier 'a'.
2014-07-13 01:04:16 +02:00
}
var n: number = x.a;
~
2014-11-05 21:26:03 +01:00
!!! error TS2322: Type 'string' is not assignable to type 'number'.