mirror of
https://github.com/GaloisInc/cryptol.git
synced 2024-12-29 10:53:31 +03:00
192b25c508
This fixes #796. It also fixes the @bboston7's example on #883, but not the original example in #883. The issue there is that `asdf` function generates a constraint only involving the module parameter. Normally we don't try to solve constraint that don't mention a schema's parameters, because they can always be solved "later", and hopefully with more things instantiated. The weird thing in this case is that the schema adds *local" constraint to the module parameters, but we end up ignoring these.
8 lines
107 B
Plaintext
8 lines
107 B
Plaintext
module Issue796_Sig where
|
|
|
|
parameter
|
|
type Key: *
|
|
type Block: *
|
|
|
|
encrypt_block: Key -> Block -> Block
|