cryptol/tests/mono-binds/test06.icry.stdout

40 lines
987 B
Plaintext
Raw Normal View History

Loading module Cryptol
Loading module Cryptol
Loading module test06
module test06
import Cryptol
/* Not recursive */
test06::test : {a} a -> a
test06::test = \{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} a -> a
test06::test = \{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