mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
4 lines
106 B
Solidity
4 lines
106 B
Solidity
function f(S storage g) view returns (uint) { S storage t = g; return t.x; }
|
|
struct S { uint x; }
|
|
// ----
|