TypeScript/tests/cases/compiler/generics0.ts

8 lines
119 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
// @declaration: true
interface G<T> {
x: T;
}
var v2: G<string>;
var z = v2.x; // 'y' should be of type 'string'