aboutsummaryrefslogtreecommitdiff
path: root/tests/run/bigDecimalCache.scala
blob: c0c709a50f7d412806731e315b8edc058c82f458 (plain) (blame)
1
2
3
4
5
6
7
8
9
object Test {
  def main(args: Array[String]): Unit = {
    val bd5a = BigDecimal(5)
    val mc = java.math.MathContext.DECIMAL32
    val bd5b = BigDecimal(5,mc)

    assert(bd5b.mc == mc)
  }
}