Created
March 23, 2010 18:05
-
-
Save retronym/341475 to your computer and use it in GitHub Desktop.
Calculate the Least Upper Bound of two types.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
object test { | |
case class L[A, B]() { | |
def ToLub[AA >: A <: L, BB >: B <: L, L] = new { type LUB = L } | |
} | |
val intBoolLub = L[Int, Boolean].ToLub | |
(1: AnyVal) : intBoolLub.LUB | |
1: intBoolLub.LUB | |
true: intBoolLub.LUB | |
0L: intBoolLub.LUB | |
// | |
// "": intBoolLub.LUB | |
} |
The return type of apply is based on the inferred type arguments A=Any, B=Any, and L=Any, long before any fruit is passed it's way.
Is it possible to make it work without the slightly clumsy ToLub call (or rather, can you hide it)?
Same problem as here
akka/akka#19418
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Why doesn't this work?
It gives