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