summaryrefslogtreecommitdiff
path: root/test/files/run/matchnull.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/matchnull.scala')
-rw-r--r--test/files/run/matchnull.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/matchnull.scala b/test/files/run/matchnull.scala
index cfb3049239..2cc8550d47 100644
--- a/test/files/run/matchnull.scala
+++ b/test/files/run/matchnull.scala
@@ -3,7 +3,7 @@ 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))