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

5 lines
57 B
Solidity
Raw Normal View History

2020-05-04 16:38:00 +00:00
struct S { uint x; }
function fun(S storage) {
}
// ----