TypeScript/tests/baselines/reference/cloduleWithDuplicateMember1.errors.txt
2014-07-12 17:30:19 -07:00

26 lines
717 B
Plaintext

==== tests/cases/compiler/cloduleWithDuplicateMember1.ts (5 errors) ====
class C {
get x() { return 1; }
~
!!! Accessors are only available when targeting ECMAScript 5 and higher.
static get x() {
~
!!! Accessors are only available when targeting ECMAScript 5 and higher.
return '';
}
static foo() { }
}
module C {
export var x = 1;
~
!!! Duplicate identifier 'x'.
}
module C {
export function foo() { }
~~~
!!! Duplicate identifier 'foo'.
export function x() { }
~
!!! Duplicate identifier 'x'.
}