Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / test-debug-10.cs
1 class C
2 {
3         public static void Main ()
4         {
5                 Prop = 3;
6         }
7         
8         static int Prop
9         {
10                 get {
11                         return 4;
12                 }
13                 
14                 set {
15                 }
16         }
17         
18         static int PropAuto
19         {
20                 get;
21                 set;
22         }
23 }