diff --git a/src/compiler/checker.ts b/src/compiler/checker.ts index 4101d093e2f..6373665b1ec 100644 --- a/src/compiler/checker.ts +++ b/src/compiler/checker.ts @@ -14737,7 +14737,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; }