summaryrefslogtreecommitdiff
path: root/test/files/neg/unit2anyref.check
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2012-08-29 08:25:26 -0700
committerPaul Phillips <paulp@improving.org>2012-08-29 10:20:43 -0700
commitd3f879a6b0165310bb756b811ea3f97685533948 (patch)
tree759f4ff95bc81c10a654d4f6d4c5c9d3ce82cbce /test/files/neg/unit2anyref.check
parente03a5b766be27a1f43c9151a611b04519a2b15df (diff)
downloadscala-d3f879a6b0165310bb756b811ea3f97685533948.tar.gz
scala-d3f879a6b0165310bb756b811ea3f97685533948.tar.bz2
scala-d3f879a6b0165310bb756b811ea3f97685533948.zip
Expanded the reach of value classes.
Now extending AnyVal: - RichInt, RichDouble, etc. - ArrayOps.ofRef, ofBoolean, etc - StringAdd - StringFormat The rest of it is the changes necessary to enable those.
Diffstat (limited to 'test/files/neg/unit2anyref.check')
-rw-r--r--test/files/neg/unit2anyref.check2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/files/neg/unit2anyref.check b/test/files/neg/unit2anyref.check
index 10fe1861f5..6d11461700 100644
--- a/test/files/neg/unit2anyref.check
+++ b/test/files/neg/unit2anyref.check
@@ -1,8 +1,6 @@
unit2anyref.scala:2: error: type mismatch;
found : Unit
required: AnyRef
-Note: Unit is not implicitly converted to AnyRef. You can safely
-pattern match `x: AnyRef` or cast `x.asInstanceOf[AnyRef]` to do so.
val x: AnyRef = () // this should not succeed.
^
one error found