solidity/test/libsolidity/syntaxTests/types/mapping/enum_mapping.sol
2020-02-06 09:09:43 +01:00

8 lines
152 B
Solidity

enum E { A, B, C }
contract C {
mapping(E => bool) e;
function f(E v) public view returns (bool, bool) {
return (e[v], e[E.A]);
}
}