TypeScript/tests/cases/fourslash/addInterfaceToNotSatisfyConstraint.ts
2014-07-29 12:17:44 -07:00

15 lines
249 B
TypeScript

/// <reference path="fourslash.ts" />
//// interface A {
//// a: number;
//// }
//// /**/
//// interface C<T extends A> {
//// x: T;
//// }
////
//// var v2: C<B>; // should not work
goTo.marker();
edit.insert("interface B { b: string; }");