blob: 65eb03c3a4ab017ed46496c828b51e2a028ef7e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//
// Copyright (c) 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 }
}
|