Merge pull request #3766 from BrzVlad/feature-default-conc
[mono.git] / mcs / errors / cs1501-9.cs
1 // CS1501: No overload for method `Test' takes `2' arguments
2 // Line: 16
3
4 static class S
5 {
6         public static int Test (this int value)
7         {
8         return value;
9         }
10 }
11
12 class M
13 {
14         public static void Main ()
15         {
16                 1.Test (value: 1);
17         }
18 }