-
Notifications
You must be signed in to change notification settings - Fork 426
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Ctr patterns not being renamed in imports
- Loading branch information
1 parent
7b518b7
commit afef116
Showing
2 changed files
with
23 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
from lib/MyOption import (MyOption, MyOption/bind, MyOption/wrap) | ||
|
||
unwrap (val : (MyOption u24)) : u24 | ||
unwrap (MyOption/Some x) = x | ||
unwrap (MyOption/None) = 0 | ||
|
||
def main() -> MyOption((u24, u24)): | ||
with MyOption: | ||
a <- MyOption/Some(1) | ||
b <- MyOption/Some(2) | ||
b = unwrap(MyOption/Some(2)) | ||
return wrap((a, b)) |