You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
packageexampleclassMySuiteextends munit.FunSuite {
defsum(list: List[Int]):Int= list.sum
test("sum of a few numbers") {
assertEquals(sum(List(1,2,0)), 3) // breakpoint here
}
}
In the logs there is an warning message saying: cannot find local symbol liftedTree1$1.
What is this liftedTree1$1? Should we skip it? What is the associated symbol?
The text was updated successfully, but these errors were encountered:
In Scala 3:
In the logs there is an warning message saying: cannot find local symbol
liftedTree1$1
.What is this
liftedTree1$1
? Should we skip it? What is the associated symbol?The text was updated successfully, but these errors were encountered: