Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0190.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f58ae3799f8e1b41abc5f2cd6d853560dc9cd5ad (plain)
1
2
3
4
5
6
7
8
9
10
// cs0190.cs: The __arglist construct is valid only within a variable argument method
// Line: 8

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