mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
16245f7b9b
Co-authored-by: Kamil Śliwak <kamil.sliwak@codepoets.it>
9 lines
115 B
Solidity
9 lines
115 B
Solidity
contract C {
|
|
bytes x;
|
|
function f() public {
|
|
(x[0], x[1]) = (0, 0);
|
|
(x[0], x[1]) = (x[1], x[0]);
|
|
}
|
|
}
|
|
// ----
|