TypeScript/tests/baselines/reference/parserClassDeclaration25.errors.txt
2014-07-31 11:06:42 -07:00

14 lines
486 B
Plaintext

==== 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 is missing or not immediately following the declaration.
next(): string;
~~~~
!!! Function implementation is missing or not immediately following the declaration.
}