[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs1501-10.cs
1 // CS1501: No overload for method `TestCall' takes `1' arguments
2 // Line: 13
3
4 class C
5 {
6         static void TestCall (byte b, int a)
7         {
8         }
9
10         public static void Main ()
11         {
12                 dynamic d = 0;
13                 TestCall (d);
14         }
15 }