-
-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix resolving nested types as immutable
When resloving a nested type (e.g. `Array[Array[Int]]`) as immutable, the immutable ownership is only applied to the outer-most type, instead of every type. This means the result is now e.g. `ref Array[Array[Int]]`, instead of `ref Array[ref Array[ref Int]]`. This fixes #551. Changelog: fixed
- Loading branch information
1 parent
f8bd249
commit 227429b
Showing
2 changed files
with
54 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters