cryptol/tests/mono-binds/test06.icry.stdout
2015-06-09 14:27:43 -07:00

40 lines
891 B
Plaintext

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