forked from pniederw/expecty
-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Scala 3] Macro leads to class-not-found at runtime when containing a reference to a java enum. #59
Comments
This is likely the exact same bug as : #54 |
Hitting this too: //> using scala "3.2.2"
//> using lib "software.amazon.smithy:smithy-model:1.30.0"
//> using lib "com.disneystreaming::weaver-cats:0.8.3"
import software.amazon.smithy.model.shapes.ShapeId
import weaver._
object MyTest extends FunSuite {
test("demo") {
val shapes = Set.empty[ShapeId]
expect(shapes.contains(ShapeId.from("foo#Foo")))
}
}
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Repro (using scala-cli) :
Output :
The text was updated successfully, but these errors were encountered: