2019-04-05 15:07:08 +00:00
|
|
|
pragma experimental SMTChecker;
|
|
|
|
|
|
|
|
contract C
|
|
|
|
{
|
|
|
|
function f(uint x) public pure {
|
|
|
|
require(x < 10000);
|
|
|
|
uint y = x * 2;
|
|
|
|
assert((y % 2) == 0);
|
|
|
|
}
|
|
|
|
}
|
2020-05-14 12:09:27 +00:00
|
|
|
// ----
|
|
|
|
// Warning: (122-142): Error trying to invoke SMT solver.
|