TypeScript/tests/baselines/reference/constraints0.js
Sheetal Nandi 6ab3adfd43 Modified the emitComment logic to handle emitting leading or trailing spaces depending on flags
Leading comments have trailing separator while trailing comments have leading space
This removes the extra trailing space in the trailing comments
2014-08-15 14:32:08 -07:00

23 lines
365 B
TypeScript

//// [constraints0.ts]
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'
//// [constraints0.js]
var v1; // should work
var v2; // should not work
var y = v1.x.a; // 'a' should be of type 'number'