summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0190.cs
blob: c75d1dce80fa24789a3970b0dbf46034d7d5ce6e (plain)
1
2
3
4
5
6
7
8
9
10
// CS0190: The __arglist construct is valid only within a variable argument method
// Line: 8

public class Test
{
	public static void Foo ()
	{
		object o = __arglist; 
	}
}