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

22 lines
629 B
Text
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/conformance/classes/classDeclarations/classBody/classBodyWithStatements.ts (4 errors) ====
class C {
var x = 1;
~~~
!!! Unexpected token. A constructor, method, accessor, or property was expected.
}
~
!!! Declaration or statement expected.
class C2 {
function foo() {}
~~~~~~~~
!!! Unexpected token. A constructor, method, accessor, or property was expected.
}
~
!!! Declaration or statement expected.
var x = 1;
var y = 2;
class C3 {
x: number = y + 1; // ok, need a var in the statement production
}