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