Debug mode turns off hermetization

Added tests and fixed bugs
This commit is contained in:
radrow
2020-10-08 17:09:24 +02:00
parent 25fa365c29
commit 1a5017ce2b
6 changed files with 68 additions and 17 deletions
+11
View File
@@ -0,0 +1,11 @@
namespace M =
function mf() = mg()
function mg() = mf()
namespace N =
function nf() = ng() + M.mf() + M.mg()
private function ng() = nf() + M.mf() + M.mg()
contract C =
entrypoint f() = N.ng() + N.nf() + g()
function g() = N.ng() + N.nf() + f()