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

8 lines
129 B
Solidity
Raw Normal View History

pragma experimental SMTChecker;
contract C {
function f() public pure returns (byte) {
return (~byte(0xFF));
}
}
// ----