aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t6600.scala
blob: 1e8137894cd6f8922f92b98d7e8488d263cdf92e (plain) (blame)
1
2
3
4
5
6
7
8
final class Natural extends scala.math.ScalaNumber with scala.math.ScalaNumericConversions {
  def intValue(): Int = 0
  def longValue(): Long = 0L
  def floatValue(): Float = 0.0F
  def doubleValue(): Double = 0.0D
  def isWhole(): Boolean = false
  def underlying() = this
}