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

39 lines
1.7 KiB
Plaintext
Raw Normal View History

tests/cases/compiler/cloduleWithDuplicateMember1.ts(2,9): error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
tests/cases/compiler/cloduleWithDuplicateMember1.ts(3,16): error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
2014-10-01 02:15:18 +02:00
tests/cases/compiler/cloduleWithDuplicateMember1.ts(3,16): error TS2300: Duplicate identifier 'x'.
tests/cases/compiler/cloduleWithDuplicateMember1.ts(6,12): error TS2300: Duplicate identifier 'foo'.
tests/cases/compiler/cloduleWithDuplicateMember1.ts(10,16): error TS2300: Duplicate identifier 'x'.
2014-10-01 20:27:20 +02:00
tests/cases/compiler/cloduleWithDuplicateMember1.ts(13,21): error TS2300: Duplicate identifier 'foo'.
tests/cases/compiler/cloduleWithDuplicateMember1.ts(14,21): error TS2300: Duplicate identifier 'x'.
2014-10-01 02:15:18 +02:00
==== tests/cases/compiler/cloduleWithDuplicateMember1.ts (7 errors) ====
2014-07-13 01:04:16 +02:00
class C {
get x() { return 1; }
~
!!! error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
2014-07-13 01:04:16 +02:00
static get x() {
~
!!! error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
2014-10-01 02:15:18 +02:00
~
!!! error TS2300: Duplicate identifier 'x'.
2014-07-13 01:04:16 +02:00
return '';
}
static foo() { }
2014-10-01 02:15:18 +02:00
~~~
!!! error TS2300: Duplicate identifier 'foo'.
2014-07-13 01:04:16 +02:00
}
module C {
export var x = 1;
~
!!! error TS2300: Duplicate identifier 'x'.
2014-07-13 01:04:16 +02:00
}
module C {
export function foo() { }
2014-10-01 20:27:20 +02:00
~~~
!!! error TS2300: Duplicate identifier 'foo'.
2014-07-13 01:04:16 +02:00
export function x() { }
2014-10-01 20:27:20 +02:00
~
!!! error TS2300: Duplicate identifier 'x'.
2014-07-13 01:04:16 +02:00
}