solidity/test/libsolidity/smtCheckerTests/operators/division_truncates_correctly_2.sol

9 lines
130 B
Solidity
Raw Normal View History

2019-12-04 12:17:05 +00:00
pragma experimental SMTChecker;
contract C {
function f(int x, int y) public pure {
x = 7;
y = 2;
assert(x / y == 3);
}
}