cryptol/tests/mono-binds/test06.icry.stdout
2017-09-15 16:38:03 -07:00

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