codeowners update
[mono.git] / mcs / tests / test-694.cs
1 // Compiler options: -d:X
2
3 #undef X
4
5 #if X
6 private // must be ignored
7 #else
8 public
9 #endif
10 class Test
11 {
12         public static int Main ()
13         {
14                 return 0;
15         }
16 }