summaryrefslogtreecommitdiff
path: root/test/files/pos/t1439.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t1439.scala')
-rw-r--r--test/files/pos/t1439.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/t1439.scala b/test/files/pos/t1439.scala
index 68a7332b2a..0efcc74b65 100644
--- a/test/files/pos/t1439.scala
+++ b/test/files/pos/t1439.scala
@@ -2,7 +2,7 @@
class View[C[A]] { }
object Test {
- null match {
+ (null: Any) match {
case v: View[_] =>
}
}