-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Brian Huffman
committed
Sep 23, 2020
1 parent
2164269
commit 83c6ab4
Showing
4 changed files
with
31 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
:l issue485b.cry | ||
:t foo | ||
:t bar | ||
:t baz |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Loading module Cryptol | ||
Loading module Cryptol | ||
Loading module Float | ||
Loading module issue485a | ||
Loading module issue485b | ||
foo : [3] | ||
bar : [8] -> [8] | ||
baz : [8] -> [8] -> [8] |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
module issue485a where | ||
|
||
import Float | ||
|
||
private type A = [8] -> [8] | ||
|
||
private type ByteFun t = [8] -> t | ||
|
||
foo : RoundingMode | ||
foo = 0 | ||
|
||
bar : A | ||
bar x = x | ||
|
||
baz : ByteFun (ByteFun [8]) | ||
baz = (+) |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module issue485b where | ||
|
||
import issue485a |