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

8 lines
360 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/conformance/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration8.ts (2 errors) ====
class C {
static static get Foo() { }
~~~~~~
!!! 'static' modifier already seen.
~~~
!!! A 'get' accessor must return a value or consist of a single 'throw' statement.
2014-07-13 01:04:16 +02:00
}