// Test.scala
class Test {
def doStuff(): Unit = {
val (Seq(value), Set.empty[String]) = computeStuff(17)
}
def computeStuff(n: Int): (Seq[Int], Set[String]) =
(Seq(n * 2), Set.empty[String])
}
Test.scala:3: error: type empty is not a member of object scala.collection.immutable.Set
val (Seq(value), Set.empty[String]) = computeStuff(17)
^
one error found