1 2 3 4 5 6 7 8 9 10 11 12 13
pragma experimental SMTChecker; contract C { function f(uint x) public pure { uint y; for (y = 2; x < 10; ) { y = 3; } // False positive due to resetting y. assert(y < 4); } } // ---- // Warning: (213-226): Assertion violation happens here