solidity/test/libsolidity/syntaxTests/types/mapping/argument_public.sol

8 lines
253 B
Solidity

contract C {
function f(mapping(uint => uint) storage) public pure {
}
}
// ----
// TypeError: (28-49): Type is required to live outside storage.
// TypeError: (28-49): Internal or recursive type is not allowed for public or external functions.