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

8 lines
133 B
Solidity
Raw Normal View History

pragma experimental SMTChecker;
contract C {
function f() public pure returns (byte) {
return (byte("") & (""));
}
}
// ----