summaryrefslogtreecommitdiff
path: root/cpp/test/Slice/errorDetection/EnumeratorRedefinition.ice
blob: d1f025b3e3df5908afecb0a6eb3502a819a55cd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// **********************************************************************
//
// Copyright (c) 2003-present ZeroC, Inc. All rights reserved.
//
// **********************************************************************

module Test
{

enum Enum1 { A, B, C }  // Ok as of 3.7
enum Enum2 { A, B, E }  // Ok as of 3.7
enum Enum3 { A, B, C, A }

}