Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs1503-9.cs
1 // CS1503: Argument `#1' cannot convert `__arglist' expression to type `object'
2 // Line: 14
3
4 using System;
5
6 class Program
7 {
8         static void Foo (object o)
9         {
10         }
11
12         static void Main ()
13         {
14                 Foo (__arglist (null));
15         }
16 }