aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t0625.scala
Commit message (Collapse)AuthorAgeFilesLines
* Fix of t0625 - compare method typesMartin Odersky2014-03-211-0/+8
Method type comparison via <:< yielded false if the signatures of the two method types differed. This is too strict, because methods can have the same parametyers but different result types and still be in a subtype relationship. We now onyl demand that the sighatures have the same parameters.