summaryrefslogtreecommitdiff
path: root/test/files/neg/t8104b
Commit message (Collapse)AuthorAgeFilesLines
* [nomaster] codifies the state of the art wrt SI-8104Eugene Burmako2013-12-282-0/+47
As it was discovered in SI-8104, whiteboxity doesn’t apply equally to type parameters and type members of materialized type classes. During implicit search and subsequent type inference, whitebox type parameters are consistently erased to wildcards, whereas whitebox type members sometimes remain as is and get in the way of signature conformance checks. Unfortunately, 2.10.x can’t make use of type parameter whiteboxity, because it requires fundep materializers that were only merged into 2.11: https://github.com/scala/scala/pull/2499, and therefore Si-8104 seems to be a hard blocker for 2.10.x at the moment. Stay tuned for updates.