mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
fa78e0f3d4
Co-authored-by: Hari <webmail.hari@gmail.com> test: add parser and abi test cases docs: add example on using named parameters for mappings - Add changelog feat: update antlr grammar to allow named parameters in mappings fix: prevent conflicting mapping parameter names ref: change order of mapping initializers test: update expectations and fix build test: add more tests fix: use common error & code for conflicting params fix: issue with accessing nested mapping test: add conflicting params tests for more nested levels Update libsolidity/analysis/DeclarationTypeChecker.cpp Co-authored-by: Nikola Matić <nikola.matic@ethereum.org> fix: error reported with the same code twice test: add more tests for 3 level nested mapping Address review comments
12 lines
497 B
Solidity
12 lines
497 B
Solidity
contract test {
|
|
mapping(uint nameSame => mapping(uint name1 => mapping(uint nameSame => uint name3) name6) name4) map;
|
|
|
|
function main() external {
|
|
mapping(uint nameSame => mapping(uint name1 => mapping(uint nameSame => uint name3) name6) name4) storage _map = map;
|
|
_map[1][2][3] = 4;
|
|
}
|
|
}
|
|
// ----
|
|
// DeclarationError 1809: (20-117): Conflicting parameter name "nameSame" in mapping.
|
|
// DeclarationError 1809: (163-260): Conflicting parameter name "nameSame" in mapping.
|