summaryrefslogtreecommitdiff
path: root/test/files
diff options
context:
space:
mode:
Diffstat (limited to 'test/files')
-rw-r--r--test/files/run/matchnull.check3
-rw-r--r--test/files/run/matchnull.scala12
2 files changed, 15 insertions, 0 deletions
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))
+ }
+}