solidity/test/libsolidity/smtCheckerTests/operators/bitwise_and_fixed_bytes.sol
2020-07-15 19:32:15 +02:00

9 lines
237 B
Solidity

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.