aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/types/mapping/library_return_private.sol
blob: 13c2000f7d77eb7b4b3a29986f20891b8085296b (plain) (blame)
1
2
3
4
5
6
library L
{
    function f(mapping(uint => uint) storage a, mapping(uint => uint) storage b, bool c) private pure returns(mapping(uint => uint) storage) {
        return c ? a : b;
    }
}