From d9a67d0f1e901c2a3e04fcb3ccec20ced4a31b45 Mon Sep 17 00:00:00 2001 From: Paul Phillips Date: Sun, 4 Oct 2009 12:27:00 +0000 Subject: Test case for #1609 and the first half of #2361. --- test/files/run/matchnull.check | 3 +++ test/files/run/matchnull.scala | 12 ++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 test/files/run/matchnull.check create mode 100644 test/files/run/matchnull.scala diff --git a/test/files/run/matchnull.check b/test/files/run/matchnull.check new file mode 100644 index 0000000000..64861d87da --- /dev/null +++ b/test/files/run/matchnull.check @@ -0,0 +1,3 @@ +-1 +-1 +-1 diff --git a/test/files/run/matchnull.scala b/test/files/run/matchnull.scala new file mode 100644 index 0000000000..2cc8550d47 --- /dev/null +++ b/test/files/run/matchnull.scala @@ -0,0 +1,12 @@ +object Test +{ + def f1 = null match { case x: AnyRef => 1 case _ => -1 } + def f2(x: Any) = x match { case 52 => 1 ; case null => -1 ; case _ => 0 } + def f3(x: AnyRef) = x match { case x: String => 1 ; case List(_) => 0 ; case null => -1 ; case _ => -2 } + + def main(args: Array[String]): Unit = { + println(f1) + println(f2(null)) + println(f3(null)) + } +} -- cgit v1.2.3