summaryrefslogtreecommitdiff
path: root/test/files/run/t5652b.check
Commit message (Collapse)AuthorAgeFilesLines
* SI-5652 Mangle names of potentially public lambda lifted methods.Jason Zaugg2012-05-261-0/+4
This can happen if they are accessed from an inner class. If a subclass is happens to lift a public method to the same name, a VerifyError ensues. The enclosed tests: - demonstrate the absense of the VerifyError - show the names generated for the lifted methods (which are unchanged if not called from an inner class, or if lifted into a trait implementation class.) - ensure that the callers are rewritten to call the correct method when multiple with the same name are lifted. It's not ideal that this phase needs a priori knowledge of the later phases to perform this mangling. A better fix would defer this until the point when the methods are publicised, and leave the unmangled private method in place and install an public, mangled forwarder.