From 72052b6070cf602b3b84f1ec41df332860e93c3c Mon Sep 17 00:00:00 2001 From: Vojin Jovanovic Date: Mon, 23 Apr 2012 13:15:13 +0200 Subject: Fix for SI-5471 --- test/files/jvm/si5471.check | 2 ++ test/files/jvm/si5471.scala | 17 +++++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 test/files/jvm/si5471.check create mode 100644 test/files/jvm/si5471.scala (limited to 'test/files/jvm') diff --git a/test/files/jvm/si5471.check b/test/files/jvm/si5471.check new file mode 100644 index 0000000000..bb101b641b --- /dev/null +++ b/test/files/jvm/si5471.check @@ -0,0 +1,2 @@ +true +true diff --git a/test/files/jvm/si5471.scala b/test/files/jvm/si5471.scala new file mode 100644 index 0000000000..2c8c4205c5 --- /dev/null +++ b/test/files/jvm/si5471.scala @@ -0,0 +1,17 @@ + +object Test { + + def main(args: Array[String]) { + import scala.math.Numeric + import scala.math.Numeric.Implicits._ + + val b = BigInt(Long.MaxValue) + 1 + + def dbl[N :Numeric](n: N) = n.toDouble + def flt[N :Numeric](n: N) = n.toFloat + + println(dbl(b) == b.toDouble) + println(flt(b) == b.toFloat) + } + +} -- cgit v1.2.3