Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs1501-6.cs
1 // CS1501: No overload for method `Foo' takes `2' arguments
2 // Line: 17
3
4
5 static class Extensions
6 {
7         public static string Foo (this string s)
8         {
9                 return s;
10         }
11 }
12
13 public class M
14 {
15         public static void Main ()
16         {
17                 1.Foo ("foo");
18         }
19 }