TypeScript/tests/cases/fourslash/addInterfaceToNotSatisfyConstraint.ts

15 lines
249 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
/// <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; }");