[runtime] Avoid indirection when building MonoContext on darwin
[mono.git] / mcs / errors / cs1978.cs
1 // CS1978: An expression of type `__arglist' cannot be used as an argument of dynamic operation
2 // Line: 9
3
4 class C
5 {
6         public static void Main ()
7         {
8                 dynamic d = null;
9                 d (__arglist (111));
10         }
11 }