aboutsummaryrefslogtreecommitdiff
path: root/tests/run/matchnull.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run/matchnull.scala')
-rw-r--r--tests/run/matchnull.scala12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/run/matchnull.scala b/tests/run/matchnull.scala
new file mode 100644
index 000000000..2cc8550d4
--- /dev/null
+++ b/tests/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))
+ }
+}