solidity/test/libsolidity/syntaxTests/types/mapping/mapping_data_location_function_param_internal.sol
2020-06-30 16:53:41 +05:30

7 lines
277 B
Solidity

contract c {
function f4(mapping(uint => uint) storage) pure internal {}
function f5(mapping(uint => uint) memory) pure internal {}
}
// ----
// TypeError 4061: (93-121): Type mapping(uint256 => uint256) is only valid in storage because it contains a (nested) mapping.