mirror of
https://github.com/GaloisInc/cryptol.git
synced 2024-12-17 21:11:35 +03:00
10 lines
96 B
Plaintext
10 lines
96 B
Plaintext
|
module test06 where
|
||
|
|
||
|
test : {a} a -> a
|
||
|
test a = bar
|
||
|
where
|
||
|
foo : a
|
||
|
foo = zero
|
||
|
|
||
|
bar = foo
|