2019-12-04 12:11:13 +00:00
|
|
|
pragma experimental SMTChecker;
|
|
|
|
contract C {
|
|
|
|
function f(int x, int y) public pure returns (int) {
|
|
|
|
require(y != 0);
|
|
|
|
require(y != -1);
|
|
|
|
return x / y;
|
|
|
|
}
|
|
|
|
}
|
2020-08-11 13:53:24 +00:00
|
|
|
// ----
|
|
|
|
// Warning 1218: (147-152): Error trying to invoke SMT solver.
|