summaryrefslogtreecommitdiff
path: root/test/files/run/matchnull.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2009-10-04 12:27:00 +0000
committerPaul Phillips <paulp@improving.org>2009-10-04 12:27:00 +0000
commitd9a67d0f1e901c2a3e04fcb3ccec20ced4a31b45 (patch)
tree712a6cdf84a4f34ffb34adba96256b3c9f75e19a /test/files/run/matchnull.scala
parent0144df5f042631794f94572f284fdb6d567f4cbf (diff)
downloadscala-d9a67d0f1e901c2a3e04fcb3ccec20ced4a31b45.tar.gz
scala-d9a67d0f1e901c2a3e04fcb3ccec20ced4a31b45.tar.bz2
scala-d9a67d0f1e901c2a3e04fcb3ccec20ced4a31b45.zip
Test case for #1609 and the first half of #2361.
Diffstat (limited to 'test/files/run/matchnull.scala')
-rw-r--r--test/files/run/matchnull.scala12
1 files changed, 12 insertions, 0 deletions
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))
+ }
+}