solidity/test/libsolidity/semanticTests/viaYul/mapping_string_key.sol
2022-05-19 20:23:28 +02:00

9 lines
171 B
Solidity

contract C {
mapping (string => uint) map;
function set(string memory s) public {
map[s];
}
}
// ----
// set(string): 0x20, 32, "01234567890123456789012345678901" ->