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
With EvaluationMode.ScalaEvaluationOnly, this test fails:
test("encoded outer") {
valsource="""|package example | |class `A+B` { | val foo = 42 | object && { | def x = { | println(foo) | 42 | } | } |} | |object Main { | def main(args: Array[String]): Unit = { | val ab = new `A+B` | println(ab.&&.x) | } |} |""".stripMargin
implicitvaldebuggee:TestingDebuggee=TestingDebuggee.mainClass(source, "example.Main", scalaVersion)
check(Breakpoint(8), Evaluation.success("foo", 42))
The error message is:
Expected success, got LeftProjection(Left(Cannot evaluate because of failed compilation:
[error] Bad symbolic reference. A signature
[error] refers to Expressionedd69075124f47788efe591c487a9522/T in package example which is not available.
...
The text was updated successfully, but these errors were encountered:
With
EvaluationMode.ScalaEvaluationOnly
, this test fails:The error message is:
The text was updated successfully, but these errors were encountered: