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
[error] -- [E008] NotFoundError:/home/jenkins/agent/workspace/buildCommunityProject/repo/jsoniter-scala-macros/shared/src/test/scala/com/github/plokhotnyuk/jsoniter_scala/macros/JsonCodecMakerSpec.scala:38:71
[error] 38|defunapply(userId: Opaque):Option[String] =Option(userId).map(_.value)
[error] | ^^^^^^^
[error] |value value is not a member of com.github.plokhotnyuk.jsoniter_scala.macros.UserId2.Tag
[error] -- [E008] NotFoundError:/home/jenkins/agent/workspace/buildCommunityProject/repo/jsoniter-scala-macros/shared/src/test/scala/com/github/plokhotnyuk/jsoniter_scala/macros/JsonCodecMakerSpec.scala:58:70
[error] 58|defunapply(orderId: Opaque):Option[Int] =Option(orderId).map(_.value)
[error] | ^^^^^^^
[error] |value value is not a member of com.github.plokhotnyuk.jsoniter_scala.macros.OrderId2.Tag
[error] two errors found
[error] (jsoniter-scala-macrosJVM /Test/ compileIncremental) Compilation failed
Two fixes:
1. Don't forget about refinements
2. Don't dealias
Fixesscala#16342
The first fix is essential for $16342. The second fix is just to keep
types tidy and not open aliases needlessly.
The previous incorrect version hid errors in previous regressions scala#15365 and scala#16311
which will need to be re-opened now.
Two fixes:
1. Don't forget about refinements
2. Don't dealias
Fixes#16342Fixes#16338
The first fix is essential for #16342. The second fix is just to keep
types tidy and not open aliases needlessly.
It probably fixes issues #16337 and #16336 as well, but the test cases
were not self-contained, so I could not try them out. It might fix other
recent regressions as well.
The previous incorrect version hid errors in previous regressions #15365
and #16311 which will need to be re-opened now.
Two fixes:
1. Don't forget about refinements
2. Don't dealias
Fixesscala#16342
The first fix is essential for $16342. The second fix is just to keep
types tidy and not open aliases needlessly.
The previous incorrect version hid errors in previous regressions scala#15365 and scala#16311
which will need to be re-opened now.
The text was updated successfully, but these errors were encountered: