mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
14 lines
276 B
Solidity
14 lines
276 B
Solidity
contract C {
|
|
function f() pure public {
|
|
(uint a, uint b, uint c) = g();
|
|
(uint d) = 2;
|
|
(, uint e) = (3,4);
|
|
(uint h,) = (4,5);
|
|
(uint x,,) = g();
|
|
(, uint y,) = g();
|
|
a; b; c; d; e; h; x; y;
|
|
}
|
|
function g() pure public returns (uint, uint, uint) {}
|
|
}
|
|
// ----
|