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

9 lines
170 B
Solidity
Raw Normal View History

pragma experimental SMTChecker;
contract Simp {
function f3() public pure returns (byte) {
bytes memory y = "def";
return y[0] ^ "e";
}
}
// ----