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

26 lines
717 B
Plaintext
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; }
~
!!! 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'.
}