mirror of
https://github.com/GaloisInc/cryptol.git
synced 2024-11-24 06:52:44 +03:00
10 lines
108 B
Plaintext
10 lines
108 B
Plaintext
module test06 where
|
|
|
|
test : {a} (Zero a) => a -> a
|
|
test a = bar
|
|
where
|
|
foo : a
|
|
foo = zero
|
|
|
|
bar = foo
|