summaryrefslogtreecommitdiff
path: root/test/files
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-04-06 04:33:46 +0000
committerPaul Phillips <paulp@improving.org>2011-04-06 04:33:46 +0000
commit7ec024951951b22afa3b074a921e40fcebb2b361 (patch)
tree1409c76f8aac7ed4d7737077845f0ed1970c8666 /test/files
parente830a7ce9e1c90b4653c0dfed7992c28410ef6ab (diff)
downloadscala-7ec024951951b22afa3b074a921e40fcebb2b361.tar.gz
scala-7ec024951951b22afa3b074a921e40fcebb2b361.tar.bz2
scala-7ec024951951b22afa3b074a921e40fcebb2b361.zip
Misc cleanups and crash avoidance, no review.
Diffstat (limited to 'test/files')
-rw-r--r--test/files/neg/bug3736.check5
-rw-r--r--test/files/neg/super-cast-or-test.check7
-rw-r--r--test/files/neg/super-cast-or-test.scala3
3 files changed, 14 insertions, 1 deletions
diff --git a/test/files/neg/bug3736.check b/test/files/neg/bug3736.check
index 8a91088914..cc222d1221 100644
--- a/test/files/neg/bug3736.check
+++ b/test/files/neg/bug3736.check
@@ -1,6 +1,9 @@
bug3736.scala:4: error: super not allowed here: use this.isInstanceOf instead
def f2 = super.isInstanceOf[String]
^
+bug3736.scala:5: error: super not allowed here: use this.asInstanceOf instead
+ def f3 = super.asInstanceOf[AnyRef]
+ ^
bug3736.scala:6: error: super not allowed here: use this.== instead
def f4 = super.==(new AnyRef)
^
@@ -10,4 +13,4 @@ bug3736.scala:7: error: super not allowed here: use this.!= instead
bug3736.scala:8: error: super not allowed here: use this.## instead
def f6 = super.##
^
-four errors found
+5 errors found
diff --git a/test/files/neg/super-cast-or-test.check b/test/files/neg/super-cast-or-test.check
new file mode 100644
index 0000000000..8e5eed62bd
--- /dev/null
+++ b/test/files/neg/super-cast-or-test.check
@@ -0,0 +1,7 @@
+super-cast-or-test.scala:1: error: super not allowed here: use this.asInstanceOf instead
+trait A { def f = super.asInstanceOf[AnyRef] }
+ ^
+super-cast-or-test.scala:2: error: super not allowed here: use this.isInstanceOf instead
+trait B { def g = super.isInstanceOf[AnyRef] }
+ ^
+two errors found
diff --git a/test/files/neg/super-cast-or-test.scala b/test/files/neg/super-cast-or-test.scala
new file mode 100644
index 0000000000..a0f86d8081
--- /dev/null
+++ b/test/files/neg/super-cast-or-test.scala
@@ -0,0 +1,3 @@
+trait A { def f = super.asInstanceOf[AnyRef] }
+trait B { def g = super.isInstanceOf[AnyRef] }
+