//// [genericConstraint3.ts] interface C

{ x: P; } interface A> { x: U; } interface B extends A<{}, { x: {} }> { } // Should not produce an error //// [genericConstraint3.js]