solidity/test/libsolidity/smtCheckerTests/operators/bitwise_and_fixed_bytes.sol
2020-10-02 10:26:02 +02:00

8 lines
133 B
Solidity

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