solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/129_int_to_enum_explicit_conversion_is_okay.sol

11 lines
193 B
Solidity
Raw Normal View History

contract test {
enum ActionChoices { GoLeft, GoRight, GoStraight, Sit }
2020-06-23 12:14:24 +00:00
constructor() {
a = 2;
b = ActionChoices(a);
}
uint256 a;
ActionChoices b;
}
// ----