Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / test-823.cs
1 // Compiler options: -r:test-823-lib.dll
2
3 class Test
4 {
5         public static int Main ()
6         {
7                 var a = new A ();
8                 if (a.Prop != 1)
9                         return 1;
10                 
11                 return 0;
12         }
13 }