TypeScript/tests/cases/compiler/constraints0.ts

16 lines
210 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
interface A {
a: number;
}
interface B {
b: string;
}
interface C<T extends A> {
x: T;
}
var v1: C<A>; // should work
var v2: C<B>; // should not work
var y = v1.x.a; // 'a' should be of type 'number'