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

13 lines
582 B
Plaintext

==== 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.
}