aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t6370.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/t6370.scala')
-rw-r--r--tests/pending/run/t6370.scala12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/pending/run/t6370.scala b/tests/pending/run/t6370.scala
deleted file mode 100644
index c86b87dc8..000000000
--- a/tests/pending/run/t6370.scala
+++ /dev/null
@@ -1,12 +0,0 @@
-object Test {
-
- def main(args: Array[String]): Unit = {
- val m = collection.immutable.ListMap( "x" -> 1 )
- try {
- m("y")
- } catch {
- case e : NoSuchElementException => assert(e.getMessage() == "key not found: y")
- }
-
- }
-}