solidity/test/libsolidity/syntaxTests/types/mapping/mapping_data_location_calldata.sol
2018-08-14 18:53:06 +02:00

10 lines
242 B
Solidity

contract c {
mapping(uint => uint) y;
function f() view public {
mapping(uint => uint) calldata x = y;
x;
}
}
// ----
// TypeError: (81-113): Data location must be "storage" for variable, but "calldata" was given.