solidity/test/libsolidity/syntaxTests/structs/recursion/recursive_struct_nested_mapping_storage.sol
2020-08-27 14:18:07 +02:00

7 lines
103 B
Solidity

library a {
struct b {
mapping (uint => b) c ;
}
function d(b storage) public {}
}