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

26 lines
772 B
Plaintext

==== tests/cases/compiler/inheritanceStaticAccessorOverridingAccessor.ts (4 errors) ====
class a {
static get x() {
~
!!! Accessors are only available when targeting ECMAScript 5 and higher.
return "20";
}
static set x(aValue: string) {
~
!!! Accessors are only available when targeting ECMAScript 5 and higher.
}
}
class b extends a {
static get x() {
~
!!! Accessors are only available when targeting ECMAScript 5 and higher.
return "20";
}
static set x(aValue: string) {
~
!!! Accessors are only available when targeting ECMAScript 5 and higher.
}
}