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

8 lines
198 B
Solidity
Raw Normal View History

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