==== tests/cases/conformance/interfaces/declarationMerging/twoGenericInterfacesDifferingByTypeParameterName2.ts (4 errors) ==== // type parameter names are relevant when choosing whether to merge interface declarations interface B { x: U; } interface B { // error ~ !!! All declarations of an interface must have identical type parameters. y: V; ~ !!! Cannot find name 'V'. } module M { interface B { x: U; } interface B { // error ~ !!! All declarations of an interface must have identical type parameters. y: T; } } module M2 { interface B { x: U; } } module M2 { interface B { // ok, different declaration space than other M2 y: T; } } module M3 { export interface B { x: U; } } module M3 { export interface B { // error ~ !!! All declarations of an interface must have identical type parameters. y: T; } }