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

12 lines
699 B
Plaintext
Raw Normal View History

tests/cases/conformance/parser/ecmascript5/Accessors/parserGetAccessorWithTypeParameters1.ts(2,7): error TS1094: An accessor cannot have type parameters.
tests/cases/conformance/parser/ecmascript5/Accessors/parserGetAccessorWithTypeParameters1.ts(2,7): error TS2378: A 'get' accessor must return a value or consist of a single 'throw' statement.
2014-07-13 01:04:16 +02:00
==== tests/cases/conformance/parser/ecmascript5/Accessors/parserGetAccessorWithTypeParameters1.ts (2 errors) ====
class C {
get foo<T>() { }
~~~
!!! error TS1094: An accessor cannot have type parameters.
2014-07-13 01:04:16 +02:00
~~~
!!! error TS2378: A 'get' accessor must return a value or consist of a single 'throw' statement.
2014-07-13 01:04:16 +02:00
}