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

9 lines
237 B
Solidity
Raw Normal View History

pragma experimental SMTChecker;
contract C {
function f() public pure returns (byte) {
return (byte("") & (""));
}
}
// ----
// Warning 5084: (101-109): Type conversion is not yet fully supported and might yield false positives.