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

15 lines
340 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/extendsClauseAlreadySeen.ts (4 errors) ====
class C {
}
class D extends C extends C {
~~~~~~~
!!! '{' expected.
~
!!! ';' expected.
baz() { }
~
!!! ';' expected.
~~~
!!! Cannot find name 'baz'.
}