pragma experimental SMTChecker;
contract C
{
function f(uint x, uint y) public pure {
require(y > 0);
uint z = x % y;
assert(z < y);
}
// ----