summaryrefslogtreecommitdiff
path: root/test/files/run/classtags_multi.check
diff options
context:
space:
mode:
authorEugene Burmako <xeno.by@gmail.com>2012-09-06 13:37:40 +0200
committerEugene Burmako <xeno.by@gmail.com>2012-09-06 20:18:22 +0200
commitf28e4d246cbb52e81228959fe9d80716cc7e2dc3 (patch)
tree93d05b1b3ad2f19a00e2167382ffbee7d04a5c4e /test/files/run/classtags_multi.check
parentd27dc71d676abc62ad9ff64c60bd42516b39ea19 (diff)
downloadscala-f28e4d246cbb52e81228959fe9d80716cc7e2dc3.tar.gz
scala-f28e4d246cbb52e81228959fe9d80716cc7e2dc3.tar.bz2
scala-f28e4d246cbb52e81228959fe9d80716cc7e2dc3.zip
fixes Manifest.Nothing and Manifest.Null
Also introduces an important change to Manifest.Nothing and Manifest.Null. Previously their `erasure` was equal to classOf[Object]. Now it's correctly set to classOf[scala.runtime.Nothing$] and classOf[scala.runtime.Null$] correspondingly. See a discussion here: https://groups.google.com/forum/#!topic/scala-internals/Y0ALGo7QPqE
Diffstat (limited to 'test/files/run/classtags_multi.check')
-rw-r--r--test/files/run/classtags_multi.check10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/files/run/classtags_multi.check b/test/files/run/classtags_multi.check
index 3a7f16c3a0..68cee4841d 100644
--- a/test/files/run/classtags_multi.check
+++ b/test/files/run/classtags_multi.check
@@ -1,5 +1,5 @@
-ClassTag[int]
-ClassTag[class [I]
-ClassTag[class [[I]
-ClassTag[class [[[I]
-ClassTag[class [[[[I]
+Int
+Array[int]
+Array[Array[int]]
+Array[Array[Array[int]]]
+Array[Array[Array[Array[int]]]]