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