DEBSOURCES
Skip Quicknav
sources / node-typescript / 4.9.5%2Bds1-2 / 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'