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

16 lines
508 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/inheritanceStaticPropertyOverridingAccessor.ts (2 errors) ====
class a {
static get x(): () => string {
~
!!! Accessors are only available when targeting ECMAScript 5 and higher.
return null;;
}
static set x(aValue: () => string) {
~
!!! Accessors are only available when targeting ECMAScript 5 and higher.
}
}
class b extends a {
static x: () => string;
}