We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34628b3 commit d204bd6Copy full SHA for d204bd6
tests/run-staging/i19170b.scala
@@ -12,5 +12,6 @@ def f(i: Expr[Int])(using Quotes): Expr[A] = { '{ new A($i) } }
12
val g: Int => A = staging.run { '{ (i: Int) => ${ f('{i}) } } }
13
println(g(3))
14
catch case ex: Exception =>
15
- assert(ex.getMessage().startsWith("`scala.quoted.staging.run` failed to load a class."))
+ throw ex // TODO: remove, debugging on CI
16
+ // assert(ex.getMessage().startsWith("`scala.quoted.staging.run` failed to load a class."), ex.getMessage())
17
}
0 commit comments