Skip to content

Commit 0cd0d65

Browse files
committed
Fix sjs testing
1 parent 0912b0f commit 0cd0d65

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/run/sorted-sets-ok.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import scala.collection.SortedSet
22
import scala.collection.immutable.{SortedSet => ISortedSet}
33
import scala.collection.mutable.{SortedSet => MSortedSet}
44

5-
@main def test =
5+
@main def test(args: Array[String]): Unit =
66
val s1: SortedSet[Int] = SortedSet(1, 2, 3)
77
println(s1)
88
val s2 = s1.filter(_ % 2 == 1)

0 commit comments

Comments
 (0)