solidity/test/libsolidity/smtCheckerTests/operators/division_truncates_correctly_1.sol
2019-12-09 15:32:08 +01:00

9 lines
132 B
Solidity

pragma experimental SMTChecker;
contract C {
function f(uint x, uint y) public pure {
x = 7;
y = 2;
assert(x / y == 3);
}
}