solidity/test/libsolidity/syntaxTests/freeFunctions/struct_after_function.sol

4 lines
106 B
Solidity
Raw Normal View History

2020-05-04 16:38:00 +00:00
function f(S storage g) view returns (uint) { S storage t = g; return t.x; }
struct S { uint x; }
// ----