solidity/test/libsolidity/smtCheckerTests/special/timestamp.sol
2021-04-20 17:38:29 +02:00

11 lines
203 B
Solidity

contract C {
function f() public view returns (uint) {
uint b = block.timestamp;
uint a = b + 0; // Overflow not possible!
return a;
}
}
// ====
// SMTEngine: all
// ----