Skip to content

Commit d204bd6

Browse files
committed
Fix i19170b on Windows
1 parent 34628b3 commit d204bd6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/run-staging/i19170b.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,6 @@ def f(i: Expr[Int])(using Quotes): Expr[A] = { '{ new A($i) } }
1212
val g: Int => A = staging.run { '{ (i: Int) => ${ f('{i}) } } }
1313
println(g(3))
1414
catch case ex: Exception =>
15-
assert(ex.getMessage().startsWith("`scala.quoted.staging.run` failed to load a class."))
15+
throw ex // TODO: remove, debugging on CI
16+
// assert(ex.getMessage().startsWith("`scala.quoted.staging.run` failed to load a class."), ex.getMessage())
1617
}

0 commit comments

Comments
 (0)