diff --git a/src/compiler/checker.ts b/src/compiler/checker.ts index 3f8406f3770d8..f199bf396ace0 100644 --- a/src/compiler/checker.ts +++ b/src/compiler/checker.ts @@ -14732,7 +14732,7 @@ namespace ts { if (!classType) { return false; } - const superProperty = getPropertyOfType(classType, prop.escapedName); + const superProperty = getPropertyOfObjectType(classType, prop.escapedName); if (superProperty && superProperty.valueDeclaration) { return true; }