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

26 lines
787 B
Text
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/cloduleWithDuplicateMember1.ts (5 errors) ====
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-07-13 01:04:16 +02:00
return '';
}
static foo() { }
}
module C {
export var x = 1;
~
!!! error TS2300: Duplicate identifier 'x'.
2014-07-13 01:04:16 +02:00
}
module C {
export function foo() { }
~~~
!!! error TS2300: Duplicate identifier 'foo'.
2014-07-13 01:04:16 +02:00
export function x() { }
~
!!! error TS2300: Duplicate identifier 'x'.
2014-07-13 01:04:16 +02:00
}