Merge pull request #260 from pcc/topmost
[mono.git] / mcs / tests / test-472.cs
1 using System;
2 using System.Reflection;
3
4 class Test
5 {
6         public int Prop {
7                 get { return prop; }
8                 set { prop = value; }
9         }
10
11         int prop = 0;
12
13         public static int Main()
14         {
15                 MethodInfo mi = typeof (Test).GetMethod ("set_Prop");
16                 if (mi.GetParameters ().Length != 1)
17                                         return 1;
18                                 if ((mi.GetParameters ()[0].Name) != "value")
19                                         return 2;
20                                 
21                                 Console.WriteLine ("OK");
22                                 return 0;
23         }
24 }