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

8 lines
196 B
Solidity

library L
{
function f(mapping(uint => uint) storage a, mapping(uint => uint) storage b, bool c) public pure returns(mapping(uint => uint) storage) {
return c ? a : b;
}
}
// ----