solidity/test/libsolidity/smtCheckerTests/operators/bitwise_rational_1.sol
2020-09-01 17:21:13 +02:00

13 lines
288 B
Solidity

pragma experimental SMTChecker;
contract C {
function f() public pure {
uint x = uint(~1);
// This assertion fails because type conversion is still unsupported.
assert(x == 2**256 - 2);
assert(~1 == -2);
}
}
// ----
// Warning 6328: (169-192): Assertion violation happens here