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

13 lines
582 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/typeParametersInStaticAccessors.ts (4 errors) ====
class foo<T> {
static get Foo(): () => T { return null; }
~~~
!!! Accessors are only available when targeting ECMAScript 5 and higher.
~
!!! Static members cannot reference class type parameters.
static set Bar(v: { v: T }) { }
~~~
!!! Accessors are only available when targeting ECMAScript 5 and higher.
~
!!! Static members cannot reference class type parameters.
}