Organize smt tests in subdirectories

This commit is contained in:
Leonardo Alt
2018-11-22 13:33:28 +00:00
committed by Alex Beregszaszi
parent 4a71080ae5
commit 32fe4768a9
46 changed files with 0 additions and 0 deletions
@@ -0,0 +1,11 @@
pragma experimental SMTChecker;
// Check that negation of condition is not assumed after the body anymore
contract C {
function f(uint x) public pure {
while (x == 2) {
}
assert(x != 2);
}
}
// ----
// Warning: (199-213): Assertion violation happens here\nNote that some information is erased after the execution of loops.\nYou can re-introduce information using require().