1 2 3 4 5 6 7 8 9 10 11 12 13 14
pragma experimental SMTChecker; contract C { function f(uint x) public pure { require(x < 100); while (x < 10) { x = x + 1; } assert(x < 14); } } // ---- // Warning: (139-153): Assertion violation happens here