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
[info] Compiling1Scala source to /home/chungonn/development/scala3/explore/dotty-project-template/target/scala-0.24/classes ...
[error] Bad symbolic reference. A signature
[error] refers to FromString/T in packageorg.joda.convertwhichisnotavailable.
[error] It may be completely missing from the current classpath, or the version on
[error] the classpath might be incompatible with the version used when compiling the signature.
[error] one error found
[error] (Compile/ compileIncremental) Compilation failed
[error] Totaltime: 0 s, completed 1May, 20202:05:19PM
Expectation
The text was updated successfully, but these errors were encountered:
$ javac -classpath $JARS/joda-convert-2.2.1.jar foo/Foo.java
# note: joda-convert-2.2.1.jar not on dotc classpath
$ dotc test.scala
Bad symbolic reference. A signature
refers to FromString/T in package org.joda.convert which is not available.
It may be completely missing from the current classpath, or the version on
the classpath might be incompatible with the version used when compiling the signature.
1 error found
The code compiles in Scala 2.13.1 but emits error on dotty 0.24.0-RC1
Minimized code
build.sbt
code
Output
Expectation
The text was updated successfully, but these errors were encountered: