aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/133_enum_duplicate_values.sol
blob: 996a9b787eebd7ab124fb3125cd992fdbb95d266 (plain) (blame)
1
2
3
4
5
    contract test {
        enum ActionChoices { GoLeft, GoRight, GoLeft, Sit }
    }
// ----
// DeclarationError: (66-72): Identifier already declared.