summaryrefslogtreecommitdiff
path: root/cpp/test/Slice/errorDetection/EnumRedefinition.ice
blob: cce9f95c8646df9ef9cdc1e4c689b8769d101536 (plain)
1
2
3
4
5
6
7
8
9
10
11
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//

module Test
{

enum E1 { A, B, C }
enum E1 { D, E, F }

}