mirror of
https://github.com/GaloisInc/cryptol.git
synced 2024-12-17 21:11:35 +03:00
b4fbec108e
The core AST now always prints fully-qualified names.
40 lines
987 B
Plaintext
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
|
|
|
|
|
|
|