summaryrefslogtreecommitdiff
path: root/test/files/neg/super-cast-or-test.scala
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/neg/super-cast-or-test.scala
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/neg/super-cast-or-test.scala')
-rw-r--r--test/files/neg/super-cast-or-test.scala3
1 files changed, 3 insertions, 0 deletions
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] }
+