==== tests/cases/conformance/parser/ecmascript5/ClassDeclarations/parserClassDeclaration25.ts (2 errors) ==== interface IList { data(): T; next(): string; } class List implements IList { data(): U; ~~~~ !!! Function implementation is missing or not immediately following the declaration. next(): string; ~~~~ !!! Function implementation is missing or not immediately following the declaration. }