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

17 lines
487 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/inheritanceStaticAccessorOverridingProperty.ts (2 errors) ====
class a {
static x: string;
}
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.
}
}