Merge pull request #495 from nicolas-raoul/fix-for-issue2907-with-no-formatting-changes
[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