contract C { function f(uint x) public pure { x = 0; while (x < 10) break; assert(x == 0); } } // ==== // SMTEngine: all // SMTSolvers: z3 // ---- // Warning 6838: (65-71): BMC: Condition is always true.