mirror of
https://github.com/GaloisInc/cryptol.git
synced 2024-11-24 06:52:44 +03:00
40 lines
1.0 KiB
Plaintext
40 lines
1.0 KiB
Plaintext
Loading module Cryptol
|
|
Loading module Cryptol
|
|
Loading module test06
|
|
module test06
|
|
import Cryptol
|
|
/* Not recursive */
|
|
test06::test : {a} (Zero a) => a -> a
|
|
test06::test = \{a} (Zero a) (a : a) ->
|
|
test06::bar
|
|
where
|
|
/* Not recursive */
|
|
test06::foo : a
|
|
test06::foo = Cryptol::zero a <>
|
|
|
|
/* Not recursive */
|
|
test06::bar : a
|
|
test06::bar = test06::foo
|
|
|
|
|
|
|
|
Loading module Cryptol
|
|
Loading module test06
|
|
module test06
|
|
import Cryptol
|
|
/* Not recursive */
|
|
test06::test : {a} (Zero a) => a -> a
|
|
test06::test = \{a} (Zero a) (a : a) ->
|
|
test06::bar
|
|
where
|
|
/* Not recursive */
|
|
test06::foo : a
|
|
test06::foo = Cryptol::zero a <>
|
|
|
|
/* Not recursive */
|
|
test06::bar : a
|
|
test06::bar = test06::foo
|
|
|
|
|
|
|