aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/129_int_to_enum_explicit_conversion_is_okay.sol
blob: 2639decf5a3abd95bf280fba99c89476bd1e0fab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
contract test {
    enum ActionChoices { GoLeft, GoRight, GoStraight, Sit }
    constructor() public {
        a = 2;
        b = ActionChoices(a);
    }
    uint256 a;
    ActionChoices b;
}
// ----