contract test {
mapping(uint=>uint) map;
function fun() public view {
mapping(uint=>uint) storage a = map;
mapping(uint=>uint) storage b = map;
b = a;
(b) = a;
(b, b) = (a, a);
}
}
test/libsolidity/syntaxTests/types/mapping/assignment_local.sol:6:13: solc-verify error: Unsupported identifier as base of local storage pointer
b = a;
^
test/libsolidity/syntaxTests/types/mapping/assignment_local.sol:7:15: solc-verify error: Unsupported identifier as base of local storage pointer
(b) = a;
^
test/libsolidity/syntaxTests/types/mapping/assignment_local.sol:8:19: solc-verify error: Unsupported identifier as base of local storage pointer
(b, b) = (a, a);
^
test/libsolidity/syntaxTests/types/mapping/assignment_local.sol:8:22: solc-verify error: Unsupported identifier as base of local storage pointer
(b, b) = (a, a);
^
test/libsolidity/syntaxTests/types/mapping/assignment_local.sol:8:22: solc-verify error: Unsupported identifier as base of local storage pointer
(b, b) = (a, a);
^
test/libsolidity/syntaxTests/types/mapping/assignment_local.sol:8:19: solc-verify error: Unsupported identifier as base of local storage pointer
(b, b) = (a, a);
^