solidity/test/libsolidity/semanticTests/enums/using_enums.sol

19 lines
333 B
Solidity

contract test {
enum ActionChoices {GoLeft, GoRight, GoStraight, Sit}
constructor() public {
choices = ActionChoices.GoStraight;
}
function getChoice() public returns (uint256 d) {
d = uint256(choices);
}
ActionChoices choices;
}
// ====
// compileViaYul: also
// ----
// getChoice() -> 2