aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/types/mapping/library_array_argument_public.sol
blob: bb06d4bc3e4e243679ffd3c760995c1fd52be429 (plain) (blame)
1
2
3
4
5
6
library L {
    function f(mapping(uint => uint)[] storage) public pure {
    }
}
// ----
// TypeError: (27-50): Type is required to live outside storage.