TypeScript/tests/cases/compiler/ClassDeclaration25.ts
2014-07-12 17:30:19 -07:00

9 lines
139 B
TypeScript

interface IList<T> {
data(): T;
next(): string;
}
class List<U> implements IList<U> {
data(): U;
next(): string;
}