summaryrefslogtreecommitdiff
path: root/test/files/pos/SI-7060.scala
diff options
context:
space:
mode:
authorLukas Rytz <lukas.rytz@gmail.com>2016-02-15 21:58:22 +0100
committerLukas Rytz <lukas.rytz@gmail.com>2016-02-15 21:58:44 +0100
commitce3a8030fa59e5a9082528bf6f1ffc12a9277bc9 (patch)
tree28377cedd89b31d03c7d6132b5d8ec14580b4718 /test/files/pos/SI-7060.scala
parentc524f18ee4959f6fe8297971fc882e63468c4317 (diff)
downloadscala-ce3a8030fa59e5a9082528bf6f1ffc12a9277bc9.tar.gz
scala-ce3a8030fa59e5a9082528bf6f1ffc12a9277bc9.tar.bz2
scala-ce3a8030fa59e5a9082528bf6f1ffc12a9277bc9.zip
Rewrite a few more tests to the new optimizer
Diffstat (limited to 'test/files/pos/SI-7060.scala')
-rw-r--r--test/files/pos/SI-7060.scala11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/files/pos/SI-7060.scala b/test/files/pos/SI-7060.scala
deleted file mode 100644
index c87620e020..0000000000
--- a/test/files/pos/SI-7060.scala
+++ /dev/null
@@ -1,11 +0,0 @@
-object Test {
-
- @inline final def mbarray_apply_minibox(array: Any, tag: Byte): Long =
- if (tag == 0) {
- array.asInstanceOf[Array[Long]](0)
- } else
- array.asInstanceOf[Array[Byte]](0).toLong
-
- def crash_method(): Unit =
- mbarray_apply_minibox(null, 0)
-}