You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//== tests/cases/compiler/conflictingMemberTypesInBases.ts (1 errors) ====interfaceA{m: string;}interfaceBextendsA{}interfaceC{m: number;}interfaceDextendsC{}interfaceEextendsB{}// Error here for extending B and D//!!! Interface 'E' cannot simultaneously extend types 'B' and 'D'://!!! Named properties 'm' of types 'B' and 'D' are not identical.interfaceEextendsD{}// No duplicate error here
Expected: errors as above
Actual: no errors
The text was updated successfully, but these errors were encountered:
Expected: errors as above
Actual: no errors
The text was updated successfully, but these errors were encountered: