summaryrefslogtreecommitdiff
path: root/test/files/pos/t6600.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t6600.scala')
-rw-r--r--test/files/pos/t6600.scala8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/files/pos/t6600.scala b/test/files/pos/t6600.scala
new file mode 100644
index 0000000000..1e8137894c
--- /dev/null
+++ b/test/files/pos/t6600.scala
@@ -0,0 +1,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
+}