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
Based on Open CB failure in playframework/playframework - builds logs
Extracted from similar issue: #21599 (comment) - original issue was based on access to private members and was concluded to be working as expected. This case however involves protected members - these AFAIK are considered as public at the bytecode level
Compiler version
3.6.0-RC1-bin-20240915-ad8c21a-NIGHTLY
Bisect points to e7d479f / #21362
If you're not sure what version you're using, run print scalaVersion from sbt
(if you're running scalac manually, use scalac -version instead).
Minimized code
When creating a fix for playframework I've seen one interesting issue in their Netty integration
[error] ./test.scala:2:66
[error] Unable to emit reference to constructor AbstractUnsafe in classAbstractUnsafe, classAbstractUnsafe is not accessible in anonymous classAbstractChannel.this.AbstractUnsafe {...}
[error] overridedefnewUnsafe():AbstractChannel#AbstractUnsafe=newAbstractUnsafe {
[error] ^^^^^^^^^^^^^^Error compiling project (Scala3.6.0-RC1-bin-20240922-22ed2fb-NIGHTLY, JVM (17))
Expectation
Should compile
The text was updated successfully, but these errors were encountered:
Based on Open CB failure in
playframework/playframework
- builds logsExtracted from similar issue: #21599 (comment) - original issue was based on access to private members and was concluded to be working as expected. This case however involves protected members - these AFAIK are considered as public at the bytecode level
Compiler version
3.6.0-RC1-bin-20240915-ad8c21a-NIGHTLY
Bisect points to e7d479f / #21362
If you're not sure what version you're using, run
print scalaVersion
from sbt(if you're running scalac manually, use
scalac -version
instead).Minimized code
When creating a fix for playframework I've seen one interesting issue in their Netty integration
Output
Fails with
Expectation
Should compile
The text was updated successfully, but these errors were encountered: