[mcs] C#7 out variable declaration
[mono.git] / mcs / errors / cs0190.cs
1 // CS0190: The __arglist construct is valid only within a variable argument method
2 // Line: 8
3
4 public class Test
5 {
6         public static void Foo ()
7         {
8                 object o = __arglist; 
9         }
10 }