-
Notifications
You must be signed in to change notification settings - Fork 10
Support Scala 3 #39
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
Support Scala 3 #39
Conversation
223c10d
to
7621b8e
Compare
- This server is superseded by SNUnit
In the first commit I get:
Which I couldn't understand why it happens. |
@lolgab I've seen some similar problems in the past but typically they're quite hard to debug. In most cases, these kinds of errors are caused by either incorrect merging of the state in the Interflow or when some code is incorrectly structured in NIR. I'll try to check it out today and would report when I would get some info. |
@WojciechMazur I found a small reproduction for the error: import scala.scalanative.unsafe._
object Main {
type Func = CFuncPtr2[Ptr[Byte], Int, Unit]
val func: Func = (handle: Ptr[Byte], i: Int) => ()
def main(args: Array[String]): Unit = {}
} It seems it happens when Opened an issue here: scala-native/scala-native#2550 |
No description provided.