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