cryptol/tests/mono-binds/test06.icry.stdout
Trevor Elliott b4fbec108e Update some test output
The core AST now always prints fully-qualified names.
2015-09-27 19:56:58 -05:00

40 lines
987 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) ->
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