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

7 lines
272 B
Solidity
Raw Normal View History

2018-07-26 04:06:56 +00:00
contract c {
function f1(mapping(uint => uint)[] calldata) pure external {}
}
// ----
// TypeError 3312: (29-61): Type is required to live outside storage.
// TypeError 4103: (29-61): Only libraries are allowed to use the mapping type in public or external functions.