mirror of
https://github.com/GaloisInc/cryptol.git
synced 2024-12-18 21:41:52 +03:00
10 lines
286 B
Plaintext
10 lines
286 B
Plaintext
|
module test03 where
|
||
|
|
||
|
// expression with a free type variable. Since mono-binds
|
||
|
// monomorphizes everything rather than using fancy rules to generalize
|
||
|
// some local binds, this test probably isn't relevant anymore
|
||
|
test : {a} (fin a, a >= width a) => [a]
|
||
|
test = foo
|
||
|
where
|
||
|
foo = `(a)
|