Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / errors / cs1502-15.cs
1 // CS1502: The best overloaded method match for `C.TestCall(int, string)' has some invalid arguments
2 // Line: 13
3
4 class C
5 {
6         static void TestCall (int i, string s)
7         {
8         }
9         
10         public static void Main ()
11         {
12                 dynamic d = 0;
13                 TestCall (d, 1);
14         }
15 }