Merge pull request #487 from mayerwin/patch-1
[mono.git] / mcs / tests / test-668.cs
1 #if!FOO
2 # if! BAR
3 class Bar { };
4 # endif
5 #endif
6
7 class Test {
8         public static void Main ()
9         {
10                 new Bar ();
11         }
12 }