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

15 lines
439 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/interfaceWithImplements1.ts (5 errors) ====
interface IFoo { }
interface IBar implements IFoo {
~~~~~~~~~~
!!! '{' expected.
~~~~
!!! ';' expected.
~
!!! ';' expected.
~~~~~~~~~~
!!! Cannot find name 'implements'.
~~~~
!!! Cannot find name 'IFoo'.
}