solidity/test/libsolidity/syntaxTests/types/mapping/library_nested_storage.sol

7 lines
152 B
Solidity
Raw Normal View History

2020-06-07 16:00:52 +00:00
library Test {
struct Nested { mapping(uint => uint)[2][] a; uint y; }
struct X { Nested n; }
function f(X storage x) external {}
}
// ----