Skip to content

Commit a6dd55d

Browse files
committed
Fix test case due to multiverse equality
1 parent 27bd6b0 commit a6dd55d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/pos/vcif.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
class Position(val foo: Int) extends AnyVal {
22
def orElse(that: Position) =
3-
if (this != null) this else that
3+
if (foo != 0) this else that
44
}

0 commit comments

Comments
 (0)