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