2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / dcs1978.cs
blobacc781b5112d389e2d804883445dff0ee9237e6d
1 // CS1978: An expression of type `__arglist' cannot be used as an argument of dynamic operation
2 // Line: 9
4 class C
6 public static void Main ()
8 dynamic d = null;
9 d (__arglist (111));