4272f2e156
Previously, there was a contract that each callable symbol in the chain of `processDirectOverriddenWithBaseScope` will be unique. And if some symbol is accessible from multiple scopes, then only last of them will be returned as a component of `MemberWithScope` But after the change from previous commit, we don't have this contract anymore. Which means that we may meet the same symbol during processing hierarchy of overridden functions (but with different base scopes) So if some code utilizes `process...Overridden...WithBaseScope` functions it should consider that the same symbol may be obtained several times ^KT-63738 Fixed