summaryrefslogtreecommitdiff
path: root/test/files/run/interop_classtags_are_classmanifests.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/interop_classtags_are_classmanifests.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/interop_classtags_are_classmanifests.check')
-rw-r--r--test/files/run/interop_classtags_are_classmanifests.check6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/files/run/interop_classtags_are_classmanifests.check b/test/files/run/interop_classtags_are_classmanifests.check
index 7a0a829af2..c07ed0e657 100644
--- a/test/files/run/interop_classtags_are_classmanifests.check
+++ b/test/files/run/interop_classtags_are_classmanifests.check
@@ -1,3 +1,3 @@
-ClassTag[int]
-ClassTag[class java.lang.String]
-ClassTag[class [I]
+Int
+java.lang.String
+Array[int]