mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Organize smt tests in subdirectories
This commit is contained in:
committed by
Alex Beregszaszi
parent
4a71080ae5
commit
32fe4768a9
@@ -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().
|
||||
Reference in New Issue
Block a user