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
{{ message }}
This repository has been archived by the owner on Sep 8, 2022. It is now read-only.
It looks like cwd is on the classpath when partest runs. A REPL test fails because it tries to run method test imported from a previous line (under tweaked name binding). Presumably test package is introduced by ./test/files.
scala> for (i <- 1 to 8) test(i)
<console>:16: error: reference to test is ambiguous;
it is both defined in package <root> and imported subsequently by
import test
for (i <- 1 to 8) test(i)
^
The text was updated successfully, but these errors were encountered:
It looks like cwd is on the classpath when partest runs. A REPL test fails because it tries to run method
test
imported from a previous line (under tweaked name binding). Presumablytest
package is introduced by./test/files
.The text was updated successfully, but these errors were encountered: