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

cs0758.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ac96db20498f182bdc335f45c15d7a3e50cb4498 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0758: A partial method declaration and partial method implementation cannot differ on use of `params' modifier
// Line: 9


public partial class C
{
	partial void Foo (int[] args);
	
	partial void Foo (params int[] args)
	{
	}
}