We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Array
The following code is rejected after extraction:
object ArrayTypeAlias { type ByteArray = Array[Byte] case class ByteArrayWrapper(ba: ByteArray) def test(baw: ByteArrayWrapper): Unit = { require(baw.ba.length == 64) baw.ba(0) = 3 val ba2 = baw.ba.updated(0, 4.toByte) assert(ba2(0) == 4) } }
Note that it seems to only concern Arrays, Set etc. are unaffected. The fix is easy but I'm opening the issue for tracking.
Set
The text was updated successfully, but these errors were encountered:
Fix epfl-lara#1529
edf7fb2
7557fa5
7969892
87e1dda
Fix #1529 (#1531) bug in type checking arrays
7dcfcf6
mario-bucev
Successfully merging a pull request may close this issue.
The following code is rejected after extraction:
Note that it seems to only concern
Array
s,Set
etc. are unaffected. The fix is easy but I'm opening the issue for tracking.The text was updated successfully, but these errors were encountered: