DEBSOURCES
Skip Quicknav
sources / node-typescript / 2.1.5-1~bpo8%2B1 / tests / cases / compiler / generics0.ts
12345678
// @declaration: true interface G<T> { x: T; } var v2: G<string>; var z = v2.x; // 'y' should be of type 'string'