Consider the case of username enumeration, where a hacker is able to determine a username based on UI feedback being different from a successful entry vs a failed entry.
For example, a website's forgot password page asks for a username. If upon clicking submit with a username, the UI displays that the username is not found or is found, this is a classic case of username enumeration because it can be exploited easily by looking through all cases where username is found and not found
But, what if other inputs are required on the screen. For example, the forgot password page now requires you to enter username + last 4 ssn + zip code. When a user enters values for all 3 inputs, but don't exactly match, the UI would display "match not found". Additionally, after X number of attempts with a valid username but incorrect zip code or ssn, the account is locked (UI would not say account is locked, but email is triggered). Would you consider this to still have a username enumeration issue?