Replace SIZEOF_REGISTER with sizeof(mgreg_t) for consistency with sizeof(gpointer)
[mono.git] / mcs / errors / gcs1501-4.cs
1 // CS1501: No overload for method `Test' takes `2' arguments
2 // Line: 16
3 // Compiler options: -langversion:future
4
5 static class S
6 {
7         public static int Test (this int value)
8         {
9         return value;
10         }
11 }
12
13 class M
14 {
15         public static void Main ()
16         {
17                 1.Test (value: 1);
18         }
19 }