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

cs0225.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4aaf1b2043017a8a5c5e336685c548eb2f987526 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//
// cs0225.cs: params parameter have to be a single dimensional array.
// 

public class X
{
	public static void Test (params int a)
	{
	}

	public static void Main()
	{
		Test (1);
	}
}