mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
26 lines
653 B
Solidity
26 lines
653 B
Solidity
pragma abicoder v2;
|
|
contract test {
|
|
enum E { A, B, C }
|
|
mapping(E => uint8) public table;
|
|
function set(E k, uint8 v) public {
|
|
table[k] = v;
|
|
}
|
|
}
|
|
// ====
|
|
// ----
|
|
// table(uint8): 0 -> 0
|
|
// table(uint8): 0x01 -> 0
|
|
// table(uint8): 0xa7 -> FAILURE
|
|
// set(uint8,uint8): 0x01, 0xa1 ->
|
|
// table(uint8): 0 -> 0
|
|
// table(uint8): 0x01 -> 0xa1
|
|
// table(uint8): 0xa7 -> FAILURE
|
|
// set(uint8,uint8): 0x00, 0xef ->
|
|
// table(uint8): 0 -> 0xef
|
|
// table(uint8): 0x01 -> 0xa1
|
|
// table(uint8): 0xa7 -> FAILURE
|
|
// set(uint8,uint8): 0x01, 0x05 ->
|
|
// table(uint8): 0 -> 0xef
|
|
// table(uint8): 0x01 -> 0x05
|
|
// table(uint8): 0xa7 -> FAILURE
|