solidity/test/libsolidity/semanticTests/various/flipping_sign_tests.sol
2023-05-11 10:56:55 -05:00

10 lines
176 B
Solidity

contract test {
function f() public returns (bool) {
int256 x = -2**255;
unchecked { assert(-x == x); }
return true;
}
}
// ----
// f() -> true