mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
20 lines
607 B
Solidity
20 lines
607 B
Solidity
contract test {
|
|
mapping(uint256 => bytes4) public to_string_map;
|
|
mapping(uint256 => bool) public to_bool_map;
|
|
mapping(uint256 => uint256) public to_uint_map;
|
|
mapping(uint256 => mapping(uint256 => uint256)) public to_multiple_map;
|
|
constructor() {
|
|
to_string_map[42] = "24";
|
|
to_bool_map[42] = false;
|
|
to_uint_map[42] = 12;
|
|
to_multiple_map[42][23] = 31;
|
|
}
|
|
}
|
|
// ====
|
|
// compileViaYul: also
|
|
// ----
|
|
// to_string_map(uint256): 42 -> "24"
|
|
// to_bool_map(uint256): 42 -> false
|
|
// to_uint_map(uint256): 42 -> 12
|
|
// to_multiple_map(uint256,uint256): 42, 23 -> 31
|