2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / tests / test-323.cs
1 class X {
2         enum A : byte {
3                 x, y, z
4         }
5         const A foo = A.x | A.y;
6         
7         static void Main () {}
8 }
9
10
11
12
13
14