summaryrefslogtreecommitdiff
path: root/test/files/run/t4560b.scala
Commit message (Collapse)AuthorAgeFilesLines
* Fix SI-4560, NoSuchMethodErrors involving self types.Paul Phillips2012-07-241-0/+28
Following this commit are reversions of three prior commits which introduced difficulties of their own, plus extra tests for this issue and SI-4601, all of which I pinched from jrudolph. Maybe there was a good reason for some of the complicated code related to this ticket. I took the naive position that if we avoided generating a method call to a particular receiver if the receiver has no such method, we would encounter fewer NoSuchMethodErrors. I would believe one can construct a scenario which this doesn't handle correctly, but it's hard to believe this isn't a big improvement. Review by @jrudolph, @odersky.