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

7 lines
232 B
Solidity
Raw Normal View History

2018-07-26 04:06:56 +00:00
contract c {
function f4(mapping(uint => uint) storage) pure internal {}
function f5(mapping(uint => uint) memory) pure internal {}
2018-07-26 04:06:56 +00:00
}
// ----
// TypeError: (93-121): Mapping types can only have a data location of "storage".