Merge pull request #4816 from BrzVlad/fix-remoting-exception
[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         public static void Main () {}
8 }
9
10
11
12
13
14