TypeScript/tests/cases/fourslash/addInterfaceToNotSatisfyConstraint.ts
2015-03-02 14:41:44 -08:00

15 lines
263 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; }");