Flush test
[mono.git] / mcs / tests / test-60.cs
1 //
2 // Really lame test, but it should be fine for now
3 //
4 #if (X)
5 #endif
6
7 #if YY
8 #errro this should not be printed
9 #if X
10 #elif Y
11 #else
12 #endif
13 #else
14 class X {
15         static int Main ()
16         {
17                 return 0;
18         }
19 }
20 #endif