Skip to content

Commit 6fc147e

Browse files
committed
chore: Fix test to pass, since community build doesn't break more
1 parent e3eacae commit 6fc147e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/patmat/i13931.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
class Test:
22
def test = Vector() match
33
case Seq() => println("empty")
4-
case _ => println("non-empty")
4+
case null => println("non-empty")
55

66
def test2 = IndexedSeq() match { case IndexedSeq() => case null => }
77
def test3 = IndexedSeq() match { case IndexedSeq(1) => case _ => }

0 commit comments

Comments
 (0)