summaryrefslogtreecommitdiff
path: root/test/files
diff options
context:
space:
mode:
authorLukas Rytz <lukas.rytz@typesafe.com>2015-04-09 15:52:48 +0200
committerLukas Rytz <lukas.rytz@typesafe.com>2015-04-09 15:52:48 +0200
commit6e5c8f82e03069183e29543730c3f4a0191318c8 (patch)
tree9ceaab777a1aa2819f35192f894a64381ed139a5 /test/files
parent9a8f714dac2f02e961c2cdce98dec98c26dd9c3e (diff)
parent06b5bfa306c4c53ca4b671cb6472828b8fcdd5c3 (diff)
downloadscala-6e5c8f82e03069183e29543730c3f4a0191318c8.tar.gz
scala-6e5c8f82e03069183e29543730c3f4a0191318c8.tar.bz2
scala-6e5c8f82e03069183e29543730c3f4a0191318c8.zip
Merge pull request #4411 from xeno-by/ticket/9252
SI-9252 gets rid of custom logic for jArrayClass in runtime reflection
Diffstat (limited to 'test/files')
-rw-r--r--test/files/run/t9252.check1
-rw-r--r--test/files/run/t9252.scala5
2 files changed, 6 insertions, 0 deletions
diff --git a/test/files/run/t9252.check b/test/files/run/t9252.check
new file mode 100644
index 0000000000..b00d748f7f
--- /dev/null
+++ b/test/files/run/t9252.check
@@ -0,0 +1 @@
+class [Lscala.runtime.BoxedUnit;
diff --git a/test/files/run/t9252.scala b/test/files/run/t9252.scala
new file mode 100644
index 0000000000..da698948e1
--- /dev/null
+++ b/test/files/run/t9252.scala
@@ -0,0 +1,5 @@
+import scala.reflect.runtime.universe._
+
+object Test extends App {
+ println(rootMirror.runtimeClass(typeOf[Array[Unit]]))
+} \ No newline at end of file