mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
15 lines
372 B
Solidity
15 lines
372 B
Solidity
|
contract C {
|
||
|
bytes1[] x;
|
||
|
bytes1[] z;
|
||
|
function f() public {
|
||
|
(x.push(), x.push()) = (0, 0);
|
||
|
(((x.push())), (x.push())) = (0, 0);
|
||
|
((x.push(), x.push()), x.push()) = ((0, 0), 0);
|
||
|
(x.push(), x[0]) = (0, 0);
|
||
|
bytes1[] storage y = x;
|
||
|
(x.push(), y.push()) = (0, 0);
|
||
|
(x.push(), z.push()) = (0, 0);
|
||
|
}
|
||
|
}
|
||
|
// ----
|