mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
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]);
|
||
|
}
|
||
|
}
|
||
|
// ----
|