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

14 lines
409 B
Text
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/conformance/parser/ecmascript5/ClassDeclarations/parserClassDeclaration25.ts (2 errors) ====
interface IList<T> {
data(): T;
next(): string;
}
class List<U> implements IList<U> {
data(): U;
~~~~~~~~~~
!!! Function implementation expected.
next(): string;
~~~~~~~~~~~~~~~
!!! Function implementation expected.
}