solidity/test/libsolidity/syntaxTests/types/mapping/library_nested_storage.sol
2020-06-30 16:53:41 +05:30

7 lines
152 B
Solidity

library Test {
struct Nested { mapping(uint => uint)[2][] a; uint y; }
struct X { Nested n; }
function f(X storage x) external {}
}
// ----