Merge pull request #5636 from BrzVlad/fix-xmm-scan
[mono.git] / mcs / tests / test-97.cs
1 //
2 // This test excercises the simple name lookups on
3 // unfinished enumerations.
4 //
5
6 public enum FL { 
7         EMPTY = 0, 
8         USHIFT = 11, 
9         USER0 = (1<<(USHIFT+0)),
10 }
11
12 class X {
13
14         public static int Main ()
15         {
16                 return 0;
17         }
18 }