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

15 lines
439 B
Plaintext

==== tests/cases/compiler/interfaceWithImplements1.ts (5 errors) ====
interface IFoo { }
interface IBar implements IFoo {
~~~~~~~~~~
!!! '{' expected.
~~~~
!!! ';' expected.
~
!!! ';' expected.
~~~~~~~~~~
!!! Cannot find name 'implements'.
~~~~
!!! Cannot find name 'IFoo'.
}