solidity/test/libsolidity/smtCheckerTests/operators/division_truncates_correctly_1.sol
2020-05-14 14:12:01 +02:00

11 lines
198 B
Solidity

pragma experimental SMTChecker;
contract C {
function f(uint x, uint y) public pure {
x = 7;
y = 2;
assert(x / y == 3);
}
}
// ----
// Warning: (107-125): Error trying to invoke SMT solver.