aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/127_enum_invalid_direct_member_access.sol
blob: 68510a0a94108bdaa9e82a708b41a7b5b79c37dc (plain) (blame)
1
2
3
4
5
6
7
8
9
contract test {
    enum ActionChoices { GoLeft, GoRight, GoStraight, Sit }
    constructor() public {
        choices = Sit;
    }
    ActionChoices choices;
}
// ----
// DeclarationError: (121-124): Undeclared identifier.