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

10 lines
324 B
Plaintext

==== tests/cases/conformance/parser/ecmascript5/SuperExpressions/parserSuperExpression2.ts (2 errors) ====
class C {
M() {
super<T>(0);
~
!!! 'super' must be followed by argument list or member access.
~~~~~
!!! 'super' can only be referenced in a derived class.
}
}