[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs1503-11.cs
1 // CS1503: Argument `#1' cannot convert `null' expression to type `__arglist'
2 // Line: 8
3
4 class C
5 {
6         void Foo ()
7         {
8                 InstanceArgList (null);
9         }
10         
11         int InstanceArgList (__arglist)
12         {
13                 return 54;
14         }
15 }