-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Add ReactiveMongo-BSON to community-build #14188
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
Add ReactiveMongo-BSON to community-build #14188
Conversation
[error] -- Error: /__w/dotty/dotty/community-build/community-projects/ReactiveMongo-BSON/api/src/main/scala-3/MacroImpl.scala:478:25
[error] 478 | val underlying = f(self)
[error] | ^^^^
[error] |Cannot prove that the value is fully initialized. May only use initialized value as arguments. You should be able to reproduce this failure in your project locally by compiling with |
dfcb95e
to
4e7ff2a
Compare
For projects such as this one that compile with fatal warnings, we disable the initialization checker by adding the following line in
I tried to do this and re-enable the full project, but was blocked by two issues:
The first error I get is:
|
I assume this is because the community build is run with -Xcheck-macros, so this indicate a real problem in the original project |
I disagree, as indicated in another issue, this option is raising false error. |
With a quick look over MacroImpl.scala I saw that use usual The solution is to always pass the |
No description provided.