TypeScript/tests/baselines/reference/cloduleWithDuplicateMember2.errors.txt
2014-09-11 16:11:08 -07:00

18 lines
542 B
Plaintext

==== tests/cases/compiler/cloduleWithDuplicateMember2.ts (3 errors) ====
class C {
set x(y) { }
~
!!! error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
static set y(z) { }
~
!!! error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
}
module C {
export var x = 1;
}
module C {
export function x() { }
~
!!! error TS2300: Duplicate identifier 'x'.
}