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

6 lines
90 B
Solidity
Raw Normal View History

contract C {
function f(mapping(uint => uint) storage) private pure {
}
}
// ----