summaryrefslogtreecommitdiff
path: root/test/files/run/t1718.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t1718.scala')
-rw-r--r--test/files/run/t1718.scala10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/files/run/t1718.scala b/test/files/run/t1718.scala
new file mode 100644
index 0000000000..61a17b2906
--- /dev/null
+++ b/test/files/run/t1718.scala
@@ -0,0 +1,10 @@
+object Test extends Application{
+ def matchesNull[T](mightBeNull: Array[T]): Boolean = mightBeNull match {
+ case null => true
+ case x => false
+ }
+
+ val nullArray: Array[String] = null
+ println(matchesNull(nullArray))
+}
+