aboutsummaryrefslogblamecommitdiffstats
path: root/test/libsolidity/syntaxTests/types/mapping/library_return_public.sol
blob: ac52d6777c97c7f790dafff4318d78d49d963a2b (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                                                                                                             
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;
    }
}
// ----
// TypeError: (27-58): Type is required to live outside storage.
// TypeError: (60-91): Type is required to live outside storage.
// TypeError: (121-142): Type is required to live outside storage.