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

17 lines
629 B
Plaintext
Raw Normal View History

tests/cases/compiler/genericGetter2.ts(5,9): error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
tests/cases/compiler/genericGetter2.ts(5,14): error TS2314: Generic type 'A<T>' requires 1 type argument(s).
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/genericGetter2.ts (2 errors) ====
class A<T> { }
class C<T> {
data: A<T>;
get x(): A {
~
!!! error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
2014-07-13 01:04:16 +02:00
~
!!! error TS2314: Generic type 'A<T>' requires 1 type argument(s).
2014-07-13 01:04:16 +02:00
return this.data;
}
}