aboutsummaryrefslogtreecommitdiff
path: root/tests/neg/customArgs/i2002.scala
Commit message (Collapse)AuthorAgeFilesLines
* Fix #2000: Make implicit and non-implicit functions incomparable with <:<Martin Odersky2017-02-211-0/+4
Implicit and non-implicit functions are incomparable with <:<, but are treated as equivalent with `matches`. This means implicit and non-implicit functions of the same types override each other, but RefChecks will give an error because their types are not subtypes. Also contains a test for #2002.