[runtime] Avoid indirection when building MonoContext on darwin
[mono.git] / mcs / errors / cs1928.cs
1 // CS1928: Type `string' does not contain a member `Check' and the best extension method overload `C.Check(this string, int)' has some invalid arguments
2 // Line: 12
3
4 static class C
5 {
6         public static void Check (this string s, int i)
7         {
8         }
9
10         static void Main ()
11         {
12                 "alo".Check ("o");
13         }
14 }