Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / test-552.cs
1 class C
2 {
3         static void Test (C arg)
4         {
5         }
6         
7         public static void Main ()
8         {
9                 object value = null;
10                 C.Test(
11 #if true
12                 (C)
13 #else
14                 no error here
15 #endif
16                 value);
17         }
18 }