- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
@specialized breaks polymorphic dispatch
Thu, 2010-05-13, 11:13
I just tracked down a subtle bug [1] with overriding and
specialization. It's a silent killer: beware!
For those that don't know, specialization was enabled by default in
2.8.0.RC1. You can disable it with the compiler flag:
-no-specialization
-jason
[1] https://lampsvn.epfl.ch/trac/scala/ticket/3434
class F extends Function0[Double] {
def apply: Double = 0.0
}
object G extends F {
override def apply: Double = 1.0
}
val result = (G: F).apply
println(result) // 0.0!
Thu, 2010-05-13, 15:27
#2
Re: @specialized breaks polymorphic dispatch
Indeed, ouch! It's fixed now.
On Thu, May 13, 2010 at 12:18 PM, Ismael Juma <mlists@juma.me.uk> wrote:
--
« Je déteste la montagne, ça cache le paysage »
Alphonse Allais
On Thu, May 13, 2010 at 12:18 PM, Ismael Juma <mlists@juma.me.uk> wrote:
On Thu, May 13, 2010 at 11:13 AM, Jason Zaugg <jzaugg@gmail.com> wrote:
> I just tracked down a subtle bug [1] with overriding and
> specialization. It's a silent killer: beware!
Nicely spotted. And... ouch.
Ismael
--
« Je déteste la montagne, ça cache le paysage »
Alphonse Allais
On Thu, May 13, 2010 at 11:13 AM, Jason Zaugg wrote:
> I just tracked down a subtle bug [1] with overriding and
> specialization. It's a silent killer: beware!
Nicely spotted. And... ouch.
Ismael