solidity/test/libsolidity/smtCheckerTests/operators/bitwise_not_fixed_bytes.sol
2020-08-26 11:06:56 +02:00

9 lines
233 B
Solidity

pragma experimental SMTChecker;
contract C {
function f() public pure returns (byte) {
return (~byte(0xFF));
}
}
// ----
// Warning 5084: (102-112): Type conversion is not yet fully supported and might yield false positives.