summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2006-03-12 14:16:23 +0000
committerMartin Odersky <odersky@gmail.com>2006-03-12 14:16:23 +0000
commit74e31661cef512f818d69eb46f365e561b478afa (patch)
treed4a5c65b81676a56e6417d5556b1768ca377daa1 /test
parent9beb585e554200d3ef7a8733df77040551218d86 (diff)
downloadscala-74e31661cef512f818d69eb46f365e561b478afa.tar.gz
scala-74e31661cef512f818d69eb46f365e561b478afa.tar.bz2
scala-74e31661cef512f818d69eb46f365e561b478afa.zip
Removed errorType test; it is repeated in bug545
Diffstat (limited to 'test')
-rw-r--r--test/files/neg/errorType.check3
-rw-r--r--test/files/neg/errorType.scala9
2 files changed, 0 insertions, 12 deletions
diff --git a/test/files/neg/errorType.check b/test/files/neg/errorType.check
deleted file mode 100644
index 9818bf3bed..0000000000
--- a/test/files/neg/errorType.check
+++ /dev/null
@@ -1,3 +0,0 @@
-errorType.scala:4 error: value blah is not a member of Test.this.Foo
- val x = foo.blah match {
- ^
diff --git a/test/files/neg/errorType.scala b/test/files/neg/errorType.scala
deleted file mode 100644
index f1f9909dcb..0000000000
--- a/test/files/neg/errorType.scala
+++ /dev/null
@@ -1,9 +0,0 @@
-object Test {
- class Foo
- val foo = new Foo
- val x = foo.blah match {
- case List(x) => x
- case Nil => null
- case _ => throw new Error("too many!")
- }
-}