blob: 2c84960fcf431a7dc4b005d1962ed4c2ad073bc1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
pragma experimental SMTChecker;
contract C {
function f(uint x) public pure {
uint y;
for (y = 2; x < 10; ) {
y = 3;
}
assert(y == 3);
}
}
// ----
// Warning: (167-181): Assertion violation happens here\nNote that some information is erased after the execution of loops.\nYou can re-introduce information using require().
|