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

13 lines
289 B
Solidity
Raw Normal View History

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);
}
}
// ----
2020-09-09 14:12:55 +00:00
// Warning 6328: (169-192): Assertion violation happens here.