DEBSOURCES
Skip Quicknav
sources / node-typescript / 3.3.3333-1 / tests / cases / compiler / ClassDeclaration25.ts
12345678
interface IList<T> { data(): T; next(): string; } class List<U> implements IList<U> { data(): U; next(): string; }