solidity/test/libsolidity/syntaxTests/types/mapping/mapping_data_location_default.sol
2020-07-20 17:22:04 +02:00

10 lines
256 B
Solidity

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