mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
20 lines
350 B
Solidity
20 lines
350 B
Solidity
contract test {
|
|
enum ActionChoices {GoLeft, GoRight, GoStraight, Sit}
|
|
|
|
constructor() {
|
|
choices = ActionChoices.GoStraight;
|
|
}
|
|
|
|
function getChoice() public returns (uint256 d) {
|
|
d = uint256(choices);
|
|
}
|
|
|
|
ActionChoices choices;
|
|
}
|
|
|
|
// ====
|
|
// compileToEwasm: also
|
|
// compileViaYul: also
|
|
// ----
|
|
// getChoice() -> 2
|