Add support to internal function calls

This commit is contained in:
Leonardo Alt
2020-03-11 16:29:07 +01:00
parent 1167af1dfe
commit 07368c2e1e
67 changed files with 506 additions and 189 deletions
@@ -4,6 +4,7 @@ contract C {
function f(uint x, uint y) public pure {
x = 7;
while ((x = y) > 0) {
--y;
}
assert(x == 7);
}
@@ -11,4 +12,4 @@ contract C {
// ====
// SMTSolvers: z3
// ----
// Warning: (216-230): Assertion violation happens here
// Warning: (224-238): Assertion violation happens here