solidity/test/libsolidity/smtCheckerTests/operators/bitwise_xor_fixed_bytes.sol
2020-08-26 11:06:56 +02:00

9 lines
170 B
Solidity

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